max
This commit is contained in:
parent
24b80a92c3
commit
3e12089064
24
candle.go
24
candle.go
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user