fix(api): 移除行情请求的 s_ 前缀,强制获取全量数据以修复日期缺失问题

This commit is contained in:
2026-05-02 14:17:26 +08:00
parent 2fb5629a89
commit 2570144112
3 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ function getTencentSymbol(asset: { symbol: string; exchange: string | null }): s
case 'SZSE': return 'sz' + cleanSymbol;
case 'HKEX': return 'hk' + cleanSymbol;
case 'US':
default: return 's_us' + cleanSymbol;
default: return 'us' + cleanSymbol;
}
}