Quantmod 添加指标并另存为 csv(无图表)
我对 R 和 Quantmod 非常陌生。
是否可以添加像 MACD 这样的指标并将时间序列保存为 csv?
显示图表非常简单:
getSymbols("AAPL",src="yahoo")
barChart(AAPL)
addMACD()
但我想将指标添加到时间序列(将其另存为 csv)并且不想显示它:)
谢谢!
如何告诉移动平均线使用收盘柱? e <- cbind( AAPL, SMA( AAPL, n=50) )
以及如何向 csv 添加其他列?
I'm very new to R and Quantmod.
Is it possible to add an indicator like MACD and save the timeseries as csv?
Displaying the chart is very easy:
getSymbols("AAPL",src="yahoo")
barChart(AAPL)
addMACD()
But I want to add the indicators to the timeseries (save it as csv) and don't want to display it :)
Thanks!
How to do I tell the moving average to use the close-column?
e <- cbind( AAPL, SMA( AAPL, n=50) )
and how do I add additional columns to csv?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需使用
cbind
即可添加信号。You can just use
cbind
to add the signal.