1

只是复制一个简单的代码。但是 getSymbols 总是抛出错误:

# Set initial values
initDate='2002-07-31'
endDate='2012-10-31'
initEq=100000

start<-"2005-01-01"
end<- format(Sys.Date(),"%Y-%m-%d") # yyyy-mm-dd 

# Set currency and instruments
currency("USD")
stock("IEF",currency="USD",multiplier=1)
stock("SPY",currency="USD",multiplier=1)

# Load data with quantmod
print("Loading data")
symbols = c("IEF", "SPY")
getSymbols(symbols, from=start, to=end) 

错误:

警告消息:
1:在 download.file(paste(yahoo.URL, "s=", Symbols.name, "&a=", from.m, :
下载长度 108057 != 报告长度 200
2: 在 download.file( paste(yahoo.URL, "s=", Symbols.name, "&a=", from.m, :
下载长度 120958 != 报告长度 200

为什么?

4

0 回答 0