blob: 15f85880c5fc68921ec68336161d80b803c02746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
"""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"
|