pub fn parse_market_code(s: &str) -> Option<(i32, String)>
解析 HK.00700 / US.AAPL 为 (market_int, code)。未知 market 返回 None,上层 filter_map 会跳过。
HK.00700
US.AAPL
(market_int, code)