From: Jérôme Benoit Date: Wed, 23 Apr 2025 16:07:43 +0000 (+0200) Subject: perf(qav3): fine tune trade opening confirmation X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=6663fd8a8add9e1c0c516fcd20dfe06556354d7a;p=freqai-strategies.git perf(qav3): fine tune trade opening 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 edff17a..8316fa0 100644 --- a/quickadapter/user_data/strategies/QuickAdapterV3.py +++ b/quickadapter/user_data/strategies/QuickAdapterV3.py @@ -374,7 +374,7 @@ class QuickAdapterV3(IStrategy): self._label_params[pair]["label_natr_ratio"] = label_natr_ratio def get_entry_natr_ratio(self, pair: str) -> float: - return self.get_label_natr_ratio(pair) * 0.025 + return self.get_label_natr_ratio(pair) * 0.0175 def get_stoploss_natr_ratio(self, pair: str) -> float: return self.get_label_natr_ratio(pair) * 0.75