add lastUpdate to candle and max
This commit is contained in:
parent
8528cc60d6
commit
ae1554a7b5
10
candle.go
10
candle.go
@ -187,10 +187,7 @@ func (core *Core) SaveCandle(instId string, period string, rsp *CandleData, dura
|
|||||||
From: "rest",
|
From: "rest",
|
||||||
LastUpdate: time.Now(),
|
LastUpdate: time.Now(),
|
||||||
}
|
}
|
||||||
data := candle.Data
|
|
||||||
tsi, _ := strconv.ParseInt(data[0].(string), 10, 64)
|
|
||||||
tm, _ := Int64ToTime(tsi)
|
|
||||||
candle.Timestamp = tm
|
|
||||||
//存到elasticSearch
|
//存到elasticSearch
|
||||||
candle.PushToWriteLogChan(core)
|
candle.PushToWriteLogChan(core)
|
||||||
//保存rest得到的candle
|
//保存rest得到的candle
|
||||||
@ -214,7 +211,10 @@ func (candle *Candle) PushToWriteLogChan(cr *Core) error {
|
|||||||
candle.Id = HashString(did)
|
candle.Id = HashString(did)
|
||||||
ncd, _ := candle.ToStruct(cr)
|
ncd, _ := candle.ToStruct(cr)
|
||||||
fmt.Println("ncd: ", ncd)
|
fmt.Println("ncd: ", ncd)
|
||||||
cd, _ := json.Marshal(ncd)
|
cd, err := json.Marshal(ncd)
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println("PushToWriteLog json marshal candle err: ", err)
|
||||||
|
}
|
||||||
candle = ncd
|
candle = ncd
|
||||||
wg := WriteLog{
|
wg := WriteLog{
|
||||||
Content: cd,
|
Content: cd,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user