我想基于特定标准检索股票OHLC数据,例如仅高于其自身MA5的s& p500。有没有办法使用quantmod?例如,我可以在getSymbols函数中输入if
函数吗?
附件是我在没有标准的情况下使用的代码:
require(quantmod)
options(scipen=999)
spy <- getSymbols(c('SPY', 'IBM') , src = 'yahoo', from = '2007-01-01', auto.assign = T)
tail(cbind(SPY, IBM))