6 lines
91 B
Python
6 lines
91 B
Python
|
|
"""Backtesting Module"""
|
||
|
|
|
||
|
|
from .engine import BacktestEngine
|
||
|
|
|
||
|
|
__all__ = ['BacktestEngine']
|