blob: 9fd9c497a98fdc8083661ecfc9b30531cfe94b8f (
plain)
1
2
3
4
5
6
7
8
9
|
"""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 = {}
|