mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 19:04:15 +08:00
- change_pct: API ext 缺失时的 fallback 原先乘 100 (百分制), 与 ext.change_pct 的小数制 (0.0366=3.66%) 及 enriched 全项目约定 (pipeline.py 小数制) 相差 100 倍, 会导致策略过滤大面积误命中、 监控消息显示 366% 之类的异常值。两处 fallback 去掉 *100。 - enable(): docstring 承诺返回 bool, 成功路径此前隐式返回 None, 补 return True。 - _fetch_quotes: 加 _fetch_lock 串行化, 防手动 POST /refresh 与 后台轮询线程并发写同一批 parquet/缓存互相覆盖。