0

我下载了一些股票并对其应用 SMA 函数(帽子提示 Josh Ulrich)

library(quantmod)
e <- new.env()
getSymbols('GOOG;FB', from='2000-01-01', env=e)
close <- cbind(Cl(GOOG),Cl(FB))
smacheck <- do.call(merge, eapply(e, function(x) SMA(Cl(x), 50)))



sig1<-ifelse(close<smacheck,1,0)

   Error in .xts(e, .index(e1), .indexCLASS = indexClass(e1), .indexFORMAT = indexFormat(e1),  : 
  index is not in  increasing order

我想在两个时间序列中应用这个公式,但我得到了前面的错误

4

0 回答 0