From 1dfe843b3fe11e61d5872b7fef27151f705cd90d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 4 Aug 2025 19:02:43 +0200 Subject: [PATCH] perf(qav3): fine tune trade entry/exit reversal confirmation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- quickadapter/user_data/strategies/QuickAdapterV3.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickadapter/user_data/strategies/QuickAdapterV3.py b/quickadapter/user_data/strategies/QuickAdapterV3.py index 975afd5..08adfd2 100644 --- a/quickadapter/user_data/strategies/QuickAdapterV3.py +++ b/quickadapter/user_data/strategies/QuickAdapterV3.py @@ -64,7 +64,7 @@ class QuickAdapterV3(IStrategy): INTERFACE_VERSION = 3 def version(self) -> str: - return "3.3.132" + return "3.3.133" timeframe = "5m" @@ -976,7 +976,7 @@ class QuickAdapterV3(IStrategy): pair, df, min_natr_ratio_percent=0.0075, - max_natr_ratio_percent=0.125, + max_natr_ratio_percent=0.075, interpolation_direction="direct", ) if isna(current_deviation): @@ -1063,7 +1063,7 @@ class QuickAdapterV3(IStrategy): pair, df, min_natr_ratio_percent=0.0075, - max_natr_ratio_percent=0.125, + max_natr_ratio_percent=0.075, interpolation_direction="direct", ) if isna(current_deviation): -- 2.43.0