]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
perf(qav3): disable stoploss guard protection
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 2 Aug 2025 14:31:05 +0000 (16:31 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 2 Aug 2025 14:31:05 +0000 (16:31 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
quickadapter/user_data/strategies/QuickAdapterV3.py

index a4bf4c045e16459b6e07430bdc5d47fd3ebb1271..6abb96c6742343ef9a632e65333c476bc8a3c68c 100644 (file)
@@ -65,7 +65,7 @@ class QuickAdapterV3(IStrategy):
     INTERFACE_VERSION = 3
 
     def version(self) -> str:
-        return "3.3.125"
+        return "3.3.126"
 
     timeframe = "5m"
 
@@ -143,13 +143,13 @@ class QuickAdapterV3(IStrategy):
                 "stop_duration_candles": fit_live_predictions_candles,
                 "max_allowed_drawdown": 0.2,
             },
-            {
-                "method": "StoplossGuard",
-                "lookback_period_candles": int(fit_live_predictions_candles / 2),
-                "trade_limit": 1,
-                "stop_duration_candles": int(fit_live_predictions_candles / 2),
-                "only_per_pair": True,
-            },
+            {
+                "method": "StoplossGuard",
+                "lookback_period_candles": int(fit_live_predictions_candles / 2),
+                "trade_limit": 1,
+                "stop_duration_candles": int(fit_live_predictions_candles / 2),
+                "only_per_pair": True,
+            },
         ]
 
     use_exit_signal = True