我有一个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
似乎很难找到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笔记本时,我们是否必须以不同方式注册捆绑包?