Python pandas - yahoo finance isn't providing GOOG's historical prices? -
can please elaborate on why yahoo stopped giving goog's historical prices? goog's historicla prices page isn't helpful either. code used check: (aapl works, goog doesn't)
import pandas.io.data web import datetime print web.get_data_yahoo('aapl', datetime.datetime(2010,1,1), datetime.datetime(2013,12,31))['adj close'] print web.get_data_yahoo('goog', datetime.datetime(2010,1,1), datetime.datetime(2013,12,31))['adj close']
Comments
Post a Comment