給max增加字段timestamp

This commit is contained in:
zhangkun9038@dingtalk.com 2024-12-17 20:27:33 +08:00
parent a0383d74b3
commit d11cece942
3 changed files with 5 additions and 4 deletions

2
go.mod
View File

@ -6,7 +6,7 @@ go 1.21
require (
github.com/go-redis/redis v6.15.9+incompatible
github.com/phyer/core v0.1.25
github.com/phyer/core v0.1.26
github.com/sirupsen/logrus v1.9.3
)

4
go.sum
View File

@ -49,8 +49,8 @@ github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1y
github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY=
github.com/onsi/gomega v1.18.1 h1:M1GfJqGRrBrrGGsbxzV5dqM2U2ApXefZCQpkukxYRLE=
github.com/onsi/gomega v1.18.1/go.mod h1:0q+aL8jAiMXy9hbwj2mr5GziHiwhAIQpFmmtT5hitRs=
github.com/phyer/core v0.1.25 h1:olGu/offIChWDjN3ytI1Grq4JX9+dHGuqIXE6Myp+DE=
github.com/phyer/core v0.1.25/go.mod h1:XZdniJiiZPzOU8+QHPFRQWdvJa6m5Ilj5VClWWI0OQg=
github.com/phyer/core v0.1.26 h1:+/yRVBWbUSXS3RpUwztBpkM3A8U+ACtyhBACb4HVBoo=
github.com/phyer/core v0.1.26/go.mod h1:XZdniJiiZPzOU8+QHPFRQWdvJa6m5Ilj5VClWWI0OQg=
github.com/phyer/texus v0.0.0-20241207132635-0e7fb63f8196 h1:P1sxgCsS0VIL38ufZzgUuZLLyY/B+po6kSY7ziNZT7E=
github.com/phyer/texus v0.0.0-20241207132635-0e7fb63f8196/go.mod h1:iZexs5agdApNlp8HW/FqKgma4Ij1x8/o+ZLcMvY3f80=
github.com/phyer/v5sdkgo v0.1.4 h1:mAxxjPJVTYGuGDarqOcFGkzj5AgqbbzJGsnYmmsbapU=

View File

@ -339,7 +339,8 @@ func MakeMaX(cr *core.Core, cl *core.Candle, count int) (error, int) {
func CandlesProcess(cr *core.Core) {
for {
cd := <-cr.CandlesProcessChan
logrus.Debug("cd: ", cd)
// logrus.Debug("cd: ", cd)
fmt.Println("candle in process: ", cd)
go func(cad *core.Candle) {
mcd := MyCandle{
Candle: *cad,