"""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"]