"""Strategy Engine configuration.""" from shared.config import Settings class StrategyConfig(Settings): symbols: list[str] = ["AAPL", "MSFT", "GOOGL", "AMZN", "TSLA"] timeframes: list[str] = ["1m"] strategy_params: dict = {} selector_final_time: str = "15:30" selector_max_picks: int = 3 anthropic_api_key: str = "" anthropic_model: str = "claude-sonnet-4-20250514"