From 27960c90831f09693d29482d6df8e79fee602dac Mon Sep 17 00:00:00 2001 From: jingboyitiji Date: Fri, 28 Mar 2025 13:13:04 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=9A=E7=83=AF=E7=83=83=E6=97=A5=E5=BA=A6?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E8=A1=A5=E5=85=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main_juxiting.py | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/main_juxiting.py b/main_juxiting.py index ed9bbf1..fe365bd 100644 --- a/main_juxiting.py +++ b/main_juxiting.py @@ -388,14 +388,13 @@ def predict_main(): if __name__ == '__main__': # global end_time # 遍历2024-11-25 到 2024-12-3 之间的工作日日期 - # for i_time in pd.date_range('2025-2-1', '2025-3-18', freq='B'): - # try: - # global_config['end_time'] = i_time.strftime('%Y-%m-%d') - # predict_main() - # except Exception as e: - # logger.info(f'预测失败:{e}') - # continue + for i_time in pd.date_range('2025-2-1', '2025-3-18', freq='B'): + try: + global_config['end_time'] = i_time.strftime('%Y-%m-%d') + predict_main() + except Exception as e: + logger.info(f'预测失败:{e}') + continue # predict_main() - push_market_value()