]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
perf(qav3): refine trade entry confirmation boudaries
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 1 Aug 2025 18:52:27 +0000 (20:52 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 1 Aug 2025 18:52:27 +0000 (20:52 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
quickadapter/user_data/strategies/QuickAdapterV3.py

index 71f206cabbf8a9a7c74e2666b1c693a4f13da4c2..e2d429d6e8e3b01b97ea68b7038fa20e08d260dd 100644 (file)
@@ -65,7 +65,7 @@ class QuickAdapterV3(IStrategy):
     INTERFACE_VERSION = 3
 
     def version(self) -> str:
-        return "3.3.122"
+        return "3.3.123"
 
     timeframe = "5m"
 
@@ -972,10 +972,10 @@ class QuickAdapterV3(IStrategy):
         lower_bound = 0
         upper_bound = 0
         unfavorable_deviation = (last_candle_natr / 100.0) * self.get_entry_natr_ratio(
-            pair, 0.0025
+            pair, 0.005
         )
         favorable_deviation = (last_candle_natr / 100.0) * self.get_entry_natr_ratio(
-            pair, 0.0075
+            pair, 0.025
         )
         if side == "long":
             lower_bound = last_candle_weighted_close * (1 - favorable_deviation)