mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
把集合竞价从931剥离出来到930
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user