library(quantmod)
aapl<-getSymbols("aapl", auto.assign =FALSE)
head(aapl)
chart_Series(aapl, subset='2010::2010-04',
theme =chartTheme(),
TA="addvo();addbbands()")
我在运行此代码时遇到此错误:
“if(theme $ lylab){:参数长度为零时出错”
我觉得这很好,因为教科书中的基本例子却没有用
试试这个
chart_Series(aapl, subset='2010::2010-04',
theme =chart_theme(),
TA="add_Vo();add_BBands()")
chartSeries
使用addVo
和chartTheme
,但chart_Series
使用chart_theme
和add_Vo
等。不要试图将旧的绘图系统与新的绘图系统混合使用(在函数名称中使用_
)。