From 9a2b5a121958de7fc90b381bcf968fc975514dc8 Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Sat, 17 May 2025 07:51:03 -0700 Subject: [PATCH] Display pair information in message Signed-off-by: Emmanuel Ferdman --- freqtrade/optimize/analysis/lookahead.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/optimize/analysis/lookahead.py b/freqtrade/optimize/analysis/lookahead.py index 2e7fac421..49a74870b 100755 --- a/freqtrade/optimize/analysis/lookahead.py +++ b/freqtrade/optimize/analysis/lookahead.py @@ -235,7 +235,7 @@ class LookaheadAnalysis(BaseAnalysis): return None if "force_exit" in result_row["exit_reason"]: logger.info( - "found force-exit in pair: {result_row['pair']}, " + f"found force-exit in pair: {result_row['pair']}, " f"timerange:{result_row['open_date']}-{result_row['close_date']}, " f"idx: {idx}, skipping this one to avoid a false-positive." )