修复深圳指数历史分时成交价格小10倍的问题

This commit is contained in:
injoyai
2025-10-20 09:49:01 +08:00
parent d7b6963bd6
commit 5c8091ac26

View File

@@ -135,10 +135,10 @@ func basePrice(code string) Price {
return 1
}
switch code[:2] {
case "60", "30", "68", "00", "92", "43":
case "60", "30", "68", "00", "92", "43", "39":
return 1
default:
return 10
return 1
}
}