This commit is contained in:
zhangkun 2024-12-14 20:41:11 +08:00
parent 24b80a92c3
commit 3e12089064

View File

@ -34,15 +34,21 @@ type Candle struct {
} }
type MaX struct { type MaX struct {
Core *Core InstID string `json:"instID"`
InstId string Period string `json:"period"`
Period string KeyName string `json:"keyName"`
KeyName string Data []interface{} `json:"data"`
Count int Count int `json:"count,number"`
Ts int64 Ts int64 `json:"ts,number"`
Value float64 AvgVal float64 `json:"avgVal,number"`
Data []interface{} From string `json:"from,string"`
From string }
type MaXList struct {
Count int `json:"count"`
LastUpdateTime int64 `json:"lastUpdateTime"`
UpdateNickName string `json:"updateNickName"`
List []*MaX `json:"list"`
} }
type MatchCheck struct { type MatchCheck struct {