From: Jérôme Benoit Date: Mon, 4 Aug 2025 17:02:43 +0000 (+0200) Subject: perf(qav3): fine tune trade entry/exit reversal confirmation X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=1dfe843b3fe11e61d5872b7fef27151f705cd90d;p=freqai-strategies.git perf(qav3): fine tune trade entry/exit reversal confirmation Signed-off-by: Jérôme Benoit --- 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):