我有一个 Python 2.7 脚本,可以在命令提示符下正常运行 Zipline,--bundle=myBundle
用于加载myBundle
我使用extension.py
.
zipline run -f myAlgo.py --bundle=myBundle --start 2016-6-1 --end 2016-7-1 --data-frequency=minute
问题:但是,当我尝试使用%zipline
IPython 魔法来运行算法时,bundle 参数--bundle
似乎很难找到myBundle
.
%zipline --bundle=myBundle--start 2016-6-1 --end 2016-7-1 --data-frequency=minute
运行这个会报错
UnknownBundle: No bundle registered with the name u'myBundle'
使用 IPython 笔记本时,我们是否必须以不同的方式注册捆绑包?