pyfolio
pyfolio copied to clipboard
UserWarning: Module "zipline.assets" not found; multipliers will not be applied to position notionals.
This warning seems to come up on import pyfolio:
python3.8/site-packages/pyfolio/pos.py:26: UserWarning: Module "zipline.assets" not found; multipliers will not be applied to position notionals.
I am running python 3.8 and the latest pyfolio installed from master. I do not have zipline installed.
Having the same issue.
Same issue here and I have tried to install zipline as well but can't solve it.
Same issue here
Same issue here
>>> import pyfolio as pf
/usr/local/lib/python3.8/site-packages/pyfolio/pos.py:26: UserWarning: Module "zipline.assets" not found; multipliers will not be applied to position notionals.
warnings.warn(
I'm currently fixing this annoying warning message with this...
>>> import warnings
>>> warnings.filterwarnings('ignore')
>>>
>>> import pyfolio as pf
But I know it is definitely not ideal.
This warning seems to come up on
pf.create_full_tear_sheet(portfolioreturns,benchmark_rets=benchmarkreturns)
Do you have any ideas how to fix the issue?
Having the same issue!
Is anyone even tracking this?!
same issue here, using backtrader
pf.create_full_tear_sheet(returns, positions=positions, transactions=transactions, gross_lev=gross_lev, live_start_date='2008-12-12', round_trips=True)
Quantopian's Zipline needs to be installed first.... unfortunately the version is not for Python 3.8 but 3..7 and below.
Same issue here. Zipline can't be installed for Python 3.8
Having the same issue.
same issue here
Having the same issue!
Is anyone even tracking this?!
Having the same issue!
pyfolio/pos.py:26: UserWarning: Module "zipline.assets" not found; mutltipliers will not be applied to position notionals.
same issue, Would be very helpful if any geek share his experience. Thanks