mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-11 14:03:57 +08:00
15 lines
267 B
Python
15 lines
267 B
Python
"""
|
|
Zipline
|
|
"""
|
|
|
|
# This is *not* a place to dump arbitrary classes/modules for convenience,
|
|
# it is a place to expose the public interfaces.
|
|
|
|
from utils.protocol_utils import ndict
|
|
from algorithm import TradingAlgorithm
|
|
|
|
__all__ = [
|
|
ndict,
|
|
TradingAlgorithm
|
|
]
|