我可以使用此代码下载companywise s& p 500股票价格数据
require(quantmod)
getSymbols(c("MSFT", "AAPL", "GOOGL"), auto.assign = TRUE, from = "2005-01-05",src="google")
现在很难输入所有500个代码,例如" MSFT"," AAPL"," GOOGL"这个。有没有解决方法可以避免这种情况。
答案 0 :(得分:1)
使用tidyquant library
tq_index("SP500")
tq_get_stock_index_options
为您提供可下载的索引
https://github.com/business-science/tidyquant