我正在尝试使用Tidyquant(tq_get)下载Yahoo股票数据。我确保所有库都已更新。
stock <- c( "NLY", "BTI", "TD", "VZ", "ED", "MSFT", "DIS", "JNJ", "SPY" )
all_stock <- stock %>%
tq_get(get = "stock.prices", from = "2015-01-01")
退货时,JNJ将从2017-11-07到2018-05-23丢失所有价格数据。 如果我去雅虎下载器,所有数据都在那里。
与此相同的问题:
jnj <- tq_get("JNJ")
无错误消息。快速运行。