]> 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 15:41:15 +0000 (17:41 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 1 Aug 2025 15:41:15 +0000 (17:41 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
quickadapter/user_data/strategies/QuickAdapterV3.py

index 3a6899849b6b18771185e62eefbd6396d9252519..71f206cabbf8a9a7c74e2666b1c693a4f13da4c2 100644 (file)
@@ -65,7 +65,7 @@ class QuickAdapterV3(IStrategy):
     INTERFACE_VERSION = 3
 
     def version(self) -> str:
-        return "3.3.121"
+        return "3.3.122"
 
     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.00125
+            pair, 0.0025
         )
         favorable_deviation = (last_candle_natr / 100.0) * self.get_entry_natr_ratio(
-            pair, 0.00225
+            pair, 0.0075
         )
         if side == "long":
             lower_bound = last_candle_weighted_close * (1 - favorable_deviation)