mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61b2e737b3 |
@@ -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