]> Piment Noir Git Repositories - freqai-strategies.git/commitdiff
perf(qav3): adjust default max_natr_ratio_percent to 0.05
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 7 Dec 2025 15:32:52 +0000 (16:32 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 7 Dec 2025 15:32:52 +0000 (16:32 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
README.md
quickadapter/user_data/strategies/QuickAdapterV3.py

index 65ac4b2cd11fb9f106b643fcb50213f0235c8ebf..c1bc95ec736bf23e6997e32be7db67fc0ff4b72c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ docker compose up -d --build
 | reversal_confirmation.lookback_period                | 0                 | int >= 0                                                                                                                         | Prior confirming candles; 0 = none.                                                                                                                                                                                                                                                                 |
 | reversal_confirmation.decay_ratio                    | 0.5               | float (0,1]                                                                                                                      | Geometric per-candle volatility adjusted reversal threshold relaxation factor.                                                                                                                                                                                                                      |
 | reversal_confirmation.min_natr_ratio_percent         | 0.01              | float [0,1]                                                                                                                      | Lower bound fraction for volatility adjusted reversal threshold.                                                                                                                                                                                                                                    |
-| reversal_confirmation.max_natr_ratio_percent         | 0.              | float [0,1]                                                                                                                      | Upper bound fraction (>= lower bound) for volatility adjusted reversal threshold.                                                                                                                                                                                                                   |
+| reversal_confirmation.max_natr_ratio_percent         | 0.05              | float [0,1]                                                                                                                      | Upper bound fraction (>= lower bound) for volatility adjusted reversal threshold.                                                                                                                                                                                                                   |
 | _Regressor model_                                    |                   |                                                                                                                                  |                                                                                                                                                                                                                                                                                                     |
 | freqai.regressor                                     | `xgboost`         | enum {`xgboost`,`lightgbm`}                                                                                                      | Machine learning regressor algorithm.                                                                                                                                                                                                                                                               |
 | _Extrema smoothing_                                  |                   |                                                                                                                                  |                                                                                                                                                                                                                                                                                                     |
index 24b95e78329c70fba58a51c5fd4093b970e3a976..cc501ef715f8fc804940932be98ae56306aff841 100644 (file)
@@ -123,7 +123,7 @@ class QuickAdapterV3(IStrategy):
         "lookback_period": 0,
         "decay_ratio": 0.5,
         "min_natr_ratio_percent": 0.01,
-        "max_natr_ratio_percent": 0.1,
+        "max_natr_ratio_percent": 0.05,
     }
 
     position_adjustment_enable = True