Hi, I'm following intro_zipline
tutorials.
When i run following cell in Part7-Zipline-Parameter-Scans.ipynb
notebook,
from moonchart import ParamscanTearsheet
ParamscanTearsheet.from_csv("winners_MOMENTUM_WINDOW.csv")
Error raises:
/opt/conda/lib/python3.9/site-packages/moonchart/perf.py:118: UserWarning: Found returns which are 25 standard deviations from the mean, consider removing them with the `trim_outliers` parameter
warnings.warn("Found returns which are {0} standard deviations from the "
---------------------------------------------------------------------------
IntCastingNaNError Traceback (most recent call last)
Input In [10], in <cell line: 2>()
1 from moonchart import ParamscanTearsheet
----> 2 ParamscanTearsheet.from_csv("winners_MOMENTUM_WINDOW.csv")
I didn't modify any code, and so far the other examples have worked fine.
Thank you in advance.