我想使用yahoo_finance get_historical特性来收集历史股票价格。下面的test很好,但是test2被打印成一个空数组。有什么想法吗?
from yahoo_finance import Share
test = (Share('AAPL').get_open())
print test
test2 = (Share('AAPL').get_historical('2017-01-30', '2017-02-15'))
print test2https://stackoverflow.com/questions/44911843
复制相似问题