把集合竞价从931剥离出来到930

This commit is contained in:
injoyai
2025-10-27 09:09:19 +08:00
parent 5654065954
commit 61b2e737b3

View File

@@ -293,7 +293,14 @@ func (this Klines) Merge(n int) Klines {
if n <= 1 {
return this
}
ks := Klines(nil)
if this[0].Time.Hour() == 9 && this[0].Time.Minute() == 30 {
ks = append(ks, this[0])
this = this[1:]
}
ls := Klines(nil)
for i := 0; ; i++ {
if len(this) <= i*n {