无法从Google财经下载所有可用数据

时间:2017-10-30 18:45:25

标签: python pandas google-api google-finance google-finance-api

import datetime as dt
import pandas_datareader.data as web

start = dt.datetime(2007,1,3)
end = dt.datetime(2017,10,30)

df = web.DataReader('XCSE:OMX Stockholm PI', 'google', start, end)
df.to_csv('C:/Users/Me/Documents/stockholmpi.csv')
print('done')

Here is the chart of the data I'm trying to download。根据图表应该有2003年的数据,但是当我运行上面的代码时,我只能获得2016年11月1日到2017年10月27日的数据。任何人都知道为什么会这样?无论我投入的日期是什么,我都会得到完全相同的数据,无论是否包括2016-2017。

0 个答案:

没有答案