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/vwap_strategy.py | 1 + 1 file changed, 1 insertion(+) (limited to 'services/strategy-engine/strategies/vwap_strategy.py') diff --git a/services/strategy-engine/strategies/vwap_strategy.py b/services/strategy-engine/strategies/vwap_strategy.py index f371c32..d220832 100644 --- a/services/strategy-engine/strategies/vwap_strategy.py +++ b/services/strategy-engine/strategies/vwap_strategy.py @@ -8,6 +8,7 @@ class VwapStrategy(BaseStrategy): name: str = "vwap" def __init__(self) -> None: + super().__init__() self._deviation_threshold: float = 0.002 self._quantity: Decimal = Decimal("0.01") self._cumulative_tp_vol: float = 0.0 -- cgit v1.2.3