更新etf的判断

This commit is contained in:
injoyai
2025-11-20 09:31:08 +08:00
parent 2a27eea873
commit 233d1b689e
2 changed files with 30 additions and 1 deletions

View File

@@ -286,7 +286,7 @@ func IsETF(code string) bool {
return true
case code[0:2] == ExchangeSZ.String() &&
(code[2:4] == "15" || code[2:4] == "16"):
(code[2:4] == "15"):
return true
}
return false