library(tseries)
library(zoo)
library(forecast)
library(FinTS)
library(rugarch)
DJI.data<- get.hist.quote(instrument="^DJI", start= "2010-01-01",
end="2015-07-23", quote="AdjClose", provider= "yahoo", compression="d", retclass="zoo")没有工作.我得到了,get.hist.quote函数没有找到。我怎么才能解决这个问题?thnx
发布于 2018-03-13 02:49:22
您可能需要考虑为其getSymbols函数尝试Quantmod包。我试过以下几种方法,效果很好
getSymbols("^DJI", from = "2010-01-01", to = "2015-07-23")https://stackoverflow.com/questions/49246932
复制相似问题