mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 19:04:15 +08:00
根因: live_agg 缓存的昨日连板数 (_prev_consec_up/down) 跨日不失效, 盘中增量计算永远基于前天基准, 导致次日开盘连板数整体 -1。 - get_live_agg() 加跨日失效守卫: date.today() 变化时按需重建 (fast-path 仅比较 today ~0.24ms/次, 跨日当天一次性磁盘校验) - cron 盘后管道补 refresh_cache(), 与手动触发 /api/pipeline/run 对齐 (此前 cron 路径漏了这步, 盘后落盘的新 enriched 不反映到内存缓存)