mirror of
https://ghfast.top/https://github.com/aeroxw/tick-stock-panel.git
synced 2026-09-12 16:44:15 +08:00
原逻辑用 _limit_price(prev_close, 推断涨幅) 自算理论涨停价, 涨幅靠 symbol 前缀 + ST 名字匹配推断, 存在两类缺陷: 1. 浮点精度: 自算涨停价比真实价多 0.01, 超出 0.005 容差导致漏判 (12 只) 2. ST 匹配漏洞: 名字含 "S" 不含 "ST" (如 S佳通) 被漏判 ST 5% 档 (1 只) 改为优先读 instruments 维表的 limit_up/limit_down (交易所级别精确价), 仅新股 (limit_up 为 null 或哨兵 100000) 回退自算。输出 schema 不变, 下游 depth_service/screener/market_overview 零改动。 历史路径 compute_limit_signals 不动 (instruments 仅存当天 as_of)。