diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 18:40:32 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2026-04-01 18:40:32 +0900 |
| commit | 0b0aace94fa633cd7a90c95ee89658167a8afd35 (patch) | |
| tree | 4f5dc36c301608ed3af4a1bba9b1a924ca99581c /services/strategy-engine/strategies/combined_strategy.py | |
| parent | 8b0cf4e574390738ee33f7ff334dd5f5109b7819 (diff) | |
feat(strategy): add ADX regime filter, volume confirmation, and ATR stops to BaseStrategy
Diffstat (limited to 'services/strategy-engine/strategies/combined_strategy.py')
| -rw-r--r-- | services/strategy-engine/strategies/combined_strategy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/services/strategy-engine/strategies/combined_strategy.py b/services/strategy-engine/strategies/combined_strategy.py index 507ef5b..c70538d 100644 --- a/services/strategy-engine/strategies/combined_strategy.py +++ b/services/strategy-engine/strategies/combined_strategy.py @@ -16,6 +16,7 @@ class CombinedStrategy(BaseStrategy): name: str = "combined" def __init__(self) -> None: + super().__init__() self._strategies: list[tuple[BaseStrategy, float]] = [] # (strategy, weight) self._threshold: float = 0.5 self._quantity: Decimal = Decimal("0.01") |
