]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
perf(qav3): tune min slope strength range
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 17 May 2025 12:37:58 +0000 (14:37 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 17 May 2025 12:37:58 +0000 (14:37 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
quickadapter/user_data/freqaimodels/QuickAdapterRegressorV3.py
quickadapter/user_data/strategies/QuickAdapterV3.py
quickadapter/user_data/strategies/Utils.py

index a9a39be0ea15b88abd2579da68a82b896a4b0556..a808420fc64bec4541a663f25dfcd87d214bfa0c 100644 (file)
@@ -45,7 +45,7 @@ class QuickAdapterRegressorV3(BaseRegressionModel):
     https://github.com/sponsors/robcaulk
     """
 
-    version = "3.7.37"
+    version = "3.7.38"
 
     @cached_property
     def _optuna_config(self) -> dict:
@@ -899,7 +899,7 @@ def zigzag(
         pos: int,
         lookback_period: int = 14,
         min_value: float = 0.3,
-        max_value: float = 0.7,
+        max_value: float = 1.0,
     ) -> float:
         natr_values = get_natr_values(lookback_period)
         pos_natr = natr_values[pos]
index 3bbfccbc6298eff1dc1677e787ac9c0ca8ab054b..29f97beaf80cab2d760b649451e3b80a0ee13294 100644 (file)
@@ -58,7 +58,7 @@ class QuickAdapterV3(IStrategy):
     INTERFACE_VERSION = 3
 
     def version(self) -> str:
-        return "3.3.33"
+        return "3.3.34"
 
     timeframe = "5m"
 
index 89d88173e690944841abdcb7cd758f89dbdeed8c..3c106fb9f9ca290394202537606b319e6c0b15a8 100644 (file)
@@ -395,7 +395,7 @@ def zigzag(
         pos: int,
         lookback_period: int = 14,
         min_value: float = 0.3,
-        max_value: float = 0.7,
+        max_value: float = 1.0,
     ) -> float:
         natr_values = get_natr_values(lookback_period)
         pos_natr = natr_values[pos]