Closed hawyadowin closed 3 years ago
That error comes from the fact that I introduced a change to use enum's in #23.
I didn't foresee a pickling issue at the time.
Will do a PR fix later
If you can't wait. Just use zipline.run_algorithm
instead of the CLI interface.
Comment out the %%zipline ...
and replace the line result = _
by the following
from zipline import run_algorithm
result = run_algorithm(
start=pd.Timestamp("2015-1-1", tz="UTC"),
end=pd.Timestamp("2018-1-1", tz="UTC"),
initialize=initialize,
capital_base=10_000_000,
before_trading_start=before_trading_start,
bundle="quandl",
)
Merged a week ago.
I have downloaded the latest version of the 04_single_factor_zipline notebook however I am seeing a error
Running the following code from the cell
ERROR BEGINS HERE