From 645f017fa0a47fb4bd42190d9d77c25f459105f7 Mon Sep 17 00:00:00 2001 From: jackyu66git Date: Mon, 2 Feb 2026 12:48:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0logger=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- strategies/ChanLun_EMA52.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strategies/ChanLun_EMA52.py b/strategies/ChanLun_EMA52.py index ff6f1a3..d4070c8 100644 --- a/strategies/ChanLun_EMA52.py +++ b/strategies/ChanLun_EMA52.py @@ -107,7 +107,7 @@ class ChanLun_EMA52(IStrategy): last_price = dataframe.iloc[-1]['close'] tf_ema52_list = self.chan.check_price_ema52(last_price) if self.last_time + timedelta(minutes=1) < datetime.now(): - print(tf_ema52_list) + logger.info(tf_ema52_list) self.last_time = datetime.now() return dataframe def init_dataframes(self, dataframe_1m):