mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-12 12:50:19 +08:00
89ab65c413
Makes TradingAlgorithm available at the top-level. So that algorithms can do: ``` import zipline class MyAlgo(zipline.TradingAlgorithm) ``` OR ``` from zipline import TradingAlgorithm class MyAlgo(TradingAlgorithm) ```