blob: 2864b09b01df114c2786779bed75680f0e9f680e (
plain)
1
2
3
4
5
6
7
8
|
"""Strategy Engine configuration."""
from shared.config import Settings
class StrategyConfig(Settings):
symbols: list[str] = ["BTC/USDT"]
timeframes: list[str] = ["1m"]
strategy_params: dict = {}
|