I have two problems with version 0.7.0 and Data from Stooq:
- Data before April 2010 ist not shown (works in version 0.6.0)
- start and end does not work (same problem in version 0.6.0)
Here is the code:
import pandas as pd import pandas_datareader.data as web symbol ='AAPL.US' start = '20000101' end = '20180901' df = web.DataReader(symbol, 'stooq', start, end) print(df)