From ab722882965f08621424957a293b635f87a8cb02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9F=A5=E5=BE=AE?= Date: Fri, 10 Jul 2026 21:12:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20stock=5Fweekly/monthly/watchlist=5Flog?= =?UTF-8?q?=E5=8A=A0manual=20readers=E6=B6=88=E9=99=A4=E5=86=99=E6=97=A0?= =?UTF-8?q?=E8=AF=BB=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/mofin_health.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/mofin_health.py b/scripts/mofin_health.py index e4177016..d0830594 100644 --- a/scripts/mofin_health.py +++ b/scripts/mofin_health.py @@ -823,8 +823,15 @@ def build_report(): "stock_weekly": ["mofin_db"], "stock_monthly": ["mofin_db"], } + _manual_readers = { + "stock_weekly": ["multi_timeframe"], + "stock_monthly": ["multi_timeframe"], + "watchlist_log": ["watchlist_auto_exit", "mofin_db"], + } if not writers and tname in _manual_writers: writers = _manual_writers[tname] + if not readers and tname in _manual_readers: + readers = _manual_readers[tname] # 数据流详细描述 flow_detail = FLOW_DETAIL.get(tname, {})