有人可以详细说明为什么雅虎突然停止提供GOOG的历史价格? GOOG's historicla prices page也不是很有帮助。 我曾用过的代码检查:( AAPL有效,GOOG没有)
import pandas.io.data as 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']