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