I would like to gather historical stock prices using the yahoo_finance get_historical
feature. The test
below is fine, but test2
is printed as an empty array. Any ideas?
from yahoo_finance import Share
test = (Share('AAPL').get_open())
print test
test2 = (Share('AAPL').get_historical('2017-01-30', '2017-02-15'))
print test2