copper-mind / backtest /__init__.py
ifieryarrows's picture
Sync from GitHub (tests passed)
48e48fe verified
raw
history blame contribute delete
360 Bytes
"""
Backtest module for champion/challenger comparison.
"""
from backend.backtest.runner import (
BacktestRunner,
BacktestConfig,
BacktestResult,
BacktestMetrics,
SymbolSet,
load_symbol_set
)
__all__ = [
"BacktestRunner",
"BacktestConfig",
"BacktestResult",
"BacktestMetrics",
"SymbolSet",
"load_symbol_set"
]