为 ttr 功能获取正确的系列
我从 TTR 文档中得到了一些示例,例如:
data(ttrc)
mfi <- MFI(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])
data(ttrc)
price <- ttrc[,"Close"]
data(ttrc)
macd <- MACD( ttrc[,"Close"], 12, 26, 9, maType="EMA" )
data(ttrc)
ema.20 <- EMA(ttrc[,"Close"], 20)
data(ttrc)
是数据虚拟还是什么? 我想用于
getSymbols("AAPL",src="yahoo")
该系列并从中选择正确的列,例如“关闭”或“体积”
“可强制 xts 或矩阵的系列” 如何将时间序列从 getSymbols 转换为正确的矩阵以使用文档中的示例?
谢谢!
I got a few examples from TTR documentation like:
data(ttrc)
mfi <- MFI(ttrc[,c("High","Low","Close")], ttrc[,"Volume"])
data(ttrc)
price <- ttrc[,"Close"]
data(ttrc)
macd <- MACD( ttrc[,"Close"], 12, 26, 9, maType="EMA" )
data(ttrc)
ema.20 <- EMA(ttrc[,"Close"], 20)
Is data(ttrc)
a data-dummy or what?
I want to use
getSymbols("AAPL",src="yahoo")
for the Series and select the right column from it like 'close' or 'volume'
"series that is coercible to xts or matrix"
How do I transform the timeseries from getSymbols
to right matrix to use the examples from the documentation?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
手册
?ttrc
确认数据是随机的。您可以使用
Ad
、Vo
等函数或直接使用方括号提取所需的列。The manual,
?ttrc
, confirms that the data is random.You can extract the columns you want with the
Ad
,Vo
, etc. functions or directly with square brackets.