From 9b573f71ec9862a1a2b282fd3a1bc8a1f39d5b46 Mon Sep 17 00:00:00 2001 From: "zhangkun9038@dingtalk.com" Date: Wed, 25 Dec 2024 15:07:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E6=9F=A5=20max=20=E5=88=B6=E4=BD=9C?= =?UTF-8?q?=E6=95=B0=E9=87=8F=E4=B8=8D=E5=A4=9F=EF=BC=8C=E5=A3=B0=E7=A7=B0?= =?UTF-8?q?=E4=B8=8D=E5=8F=8A=E6=97=B6=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- candle.go | 1 + 1 file changed, 1 insertion(+) diff --git a/candle.go b/candle.go index dbe8781..347072e 100644 --- a/candle.go +++ b/candle.go @@ -178,6 +178,7 @@ func IsModOf(curInt int64, duration time.Duration) bool { func (core *Core) SaveCandle(instId string, period string, rsp *CandleData, dura time.Duration, withWs bool) { leng := len(rsp.Data) + fmt.Println("saveCandle leng: ", leng, " instId: ", instId, " period: ", period) for _, v := range rsp.Data { tmi := ToInt64(v[0]) last := ToInt64(v[4])