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。