summaryrefslogtreecommitdiff
path: root/services/strategy-engine/src/strategy_engine/config.py
blob: 2a9cb43892656cc954313612bcc41eb1fd5a0fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""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_candidates_time: str = "15:00"
    selector_filter_time: str = "15:15"
    selector_final_time: str = "15:30"
    selector_max_picks: int = 3
    anthropic_api_key: str = ""
    anthropic_model: str = "claude-sonnet-4-20250514"