feat(BT-001): add synthetic historical backtesting engine

This commit is contained in:
Bu5hm4nn
2026-03-24 16:14:51 +01:00
parent 2161e10626
commit d4dc34d5ab
7 changed files with 729 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
"""Backtesting services and historical market-data adapters."""
from .historical_provider import SyntheticHistoricalProvider, YFinanceHistoricalPriceSource
from .service import BacktestService
__all__ = ["BacktestService", "SyntheticHistoricalProvider", "YFinanceHistoricalPriceSource"]