Add FastAPI backend for energy trading system

Implements FastAPI backend with ML model support for energy trading,
including price prediction models and RL-based battery trading policy.
Features dashboard, trading, backtest, and settings API routes with
WebSocket support for real-time updates.
This commit is contained in:
2026-02-12 00:59:26 +07:00
parent a22a13f6f4
commit fe76bc7629
72 changed files with 2931 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from app.services.data_service import DataService
from app.services.strategy_service import StrategyService
from app.services.ml_service import MLService
from app.services.trading_service import TradingService
from app.services.alert_service import AlertService
__all__ = [
"DataService",
"StrategyService",
"MLService",
"TradingService",
"AlertService",
]