From b6d009f762d477345e78a1658ed4df8ab3164ed3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 19 Jun 2026 16:04:14 +0200 Subject: [PATCH] fix(quickadapter): align reversal confirmation defaults --- README.md | 2 +- quickadapter/user_data/strategies/QuickAdapterV3.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f898fa..41f7616 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ docker compose up -d --build | reversal_confirmation.lookback_period_candles | 0 | int >= 0 | Prior confirming candles; 0 = none. | | reversal_confirmation.decay_fraction | 0.5 | float (0,1] | Geometric per-candle volatility adjusted reversal threshold relaxation factor. | | reversal_confirmation.min_natr_multiplier_fraction | 0.0095 | float [0,1] | Lower bound fraction for volatility adjusted reversal threshold. | -| reversal_confirmation.max_natr_multiplier_fraction | 0.075 | float [0,1] | Upper bound fraction (>= lower bound) for volatility adjusted reversal threshold. | +| reversal_confirmation.max_natr_multiplier_fraction | 0.0125 | float [0,1] | Upper bound fraction (>= lower bound) for volatility adjusted reversal threshold. | | _Regressor model_ | | | | | freqai.regressor | `xgboost` | enum {`xgboost`,`lightgbm`,`histgradientboostingregressor`,`ngboost`,`catboost`} | Machine learning regressor algorithm. | | _Model training parameters_ | | | | diff --git a/quickadapter/user_data/strategies/QuickAdapterV3.py b/quickadapter/user_data/strategies/QuickAdapterV3.py index d2c7ee8..5a0d8c0 100644 --- a/quickadapter/user_data/strategies/QuickAdapterV3.py +++ b/quickadapter/user_data/strategies/QuickAdapterV3.py @@ -136,7 +136,7 @@ class QuickAdapterV3(IStrategy): "lookback_period_candles": 0, "decay_fraction": 0.5, "min_natr_multiplier_fraction": 0.0095, - "max_natr_multiplier_fraction": 0.075, + "max_natr_multiplier_fraction": 0.0125, } position_adjustment_enable = True -- 2.53.0