Some checks failed
CI / test (pull_request) Has been cancelled
Generate per-market daily scorecards from decision_logs and trades, optional Gemini-powered lessons, and store results in L6 context. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
645 B
Python
24 lines
645 B
Python
"""Evolution engine for self-improving trading strategies."""
|
|
|
|
from src.evolution.ab_test import ABTester, ABTestResult, StrategyPerformance
|
|
from src.evolution.daily_review import DailyReviewer
|
|
from src.evolution.optimizer import EvolutionOptimizer
|
|
from src.evolution.performance_tracker import (
|
|
PerformanceDashboard,
|
|
PerformanceTracker,
|
|
StrategyMetrics,
|
|
)
|
|
from src.evolution.scorecard import DailyScorecard
|
|
|
|
__all__ = [
|
|
"EvolutionOptimizer",
|
|
"ABTester",
|
|
"ABTestResult",
|
|
"StrategyPerformance",
|
|
"PerformanceTracker",
|
|
"PerformanceDashboard",
|
|
"StrategyMetrics",
|
|
"DailyScorecard",
|
|
"DailyReviewer",
|
|
]
|