Spaces:
Build error
Build error
File size: 550 Bytes
201cf4d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """Execution layer: order routing, position management, risk controls, P&L tracking.
Components:
- OrderRouter: venue-aware trade execution
- PositionManager: track open/closed positions
- RiskControls: circuit breakers and KK phase gates
- BankrollAllocator: tiered risk budgeting with Kelly sizing
- RealtimeBridge: connect strategy plans to live execution
- PnLTracker: daily P&L aggregation
"""
from prediction_engine.execution.pnl_tracker import DailyStats, PnLEntry, PnLTracker
__all__ = ["DailyStats", "PnLEntry", "PnLTracker"]
|