Files
backtrader/backtest/__init__.py
2026-01-17 21:21:30 +08:00

6 lines
178 B
Python

# 回测引擎模块初始化文件
from .backtest_engine import BacktestEngine
from .performance import PerformanceAnalyzer
__all__ = ['BacktestEngine', 'PerformanceAnalyzer']