From 0b0aace94fa633cd7a90c95ee89658167a8afd35 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 1 Apr 2026 18:40:32 +0900 Subject: feat(strategy): add ADX regime filter, volume confirmation, and ATR stops to BaseStrategy --- services/strategy-engine/strategies/grid_strategy.py | 1 + 1 file changed, 1 insertion(+) (limited to 'services/strategy-engine/strategies/grid_strategy.py') diff --git a/services/strategy-engine/strategies/grid_strategy.py b/services/strategy-engine/strategies/grid_strategy.py index b65264c..1244eda 100644 --- a/services/strategy-engine/strategies/grid_strategy.py +++ b/services/strategy-engine/strategies/grid_strategy.py @@ -11,6 +11,7 @@ class GridStrategy(BaseStrategy): name: str = "grid" def __init__(self) -> None: + super().__init__() self._lower_price: float = 0.0 self._upper_price: float = 0.0 self._grid_count: int = 5 -- cgit v1.2.3