From 35d75ad88f493536602e0b7a081c626c23ba69cb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 24 May 2025 23:19:30 +0200 Subject: [PATCH] refactor(qav3): refine log message 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 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quickadapter/user_data/strategies/QuickAdapterV3.py b/quickadapter/user_data/strategies/QuickAdapterV3.py index c673407..833b064 100644 --- a/quickadapter/user_data/strategies/QuickAdapterV3.py +++ b/quickadapter/user_data/strategies/QuickAdapterV3.py @@ -389,9 +389,7 @@ class QuickAdapterV3(IStrategy): ) if len(pivots_indices) == 0: logger.warning( - f"No extrema to label for pair {pair} with label_period_candles " - f"{self.get_label_period_candles(pair)} and label_natr_ratio " - f"{self.get_label_natr_ratio(pair)}" + f"No extrema to label for pair {pair} with label_period_candles {self.get_label_period_candles(pair)} and label_natr_ratio {self.get_label_natr_ratio(pair)}" ) return dataframe dataframe[EXTREMA_COLUMN] = 0 -- 2.43.0