Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Limitations to history

How far back does history work ? Got following results in debugging my working algorithm when I varied the lookback period:

if lookback is defined to 30, or 59 following works

history(lookback+1, '1m', 'high').dropna(axis=1)

if lookback is set to 60 or higher it produces an empty dataframe

Thanks