Documentation
¶
Overview ¶
Code generated by goctl. DO NOT EDIT.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetDepthListReq ¶
type GetDepthListResp ¶
type GetTickReq ¶
type GetTickResp ¶
type GetTickResp struct {
TickList []*TickInfo `json:"tick_list"`
}
type GetTickerListReq ¶
type GetTickerListReq struct {
Symbol string `json:"symbol"` //交易对
}
type GetTickerListResp ¶
type GetTickerListResp struct {
TickerList []*Ticker `json:"ticker_list"`
}
type Kline ¶
type Kline struct { Open string `json:"open"` //开 High string `json:"high"` //高 Low string `json:"low"` //低 Close string `json:"close"` //收 Amount string `json:"amount"` //成交量 Volume string `json:"volume"` //成交额 StartTime int64 `json:"start_time"` //开始时间 EndTime int64 `json:"end_time"` //结束时间 PriceRange string `json:"price_range"` //涨跌幅 Symbol string `json:"symbol"` //交易对 }
type KlineListReq ¶
type KlineListResp ¶
type KlineListResp struct {
KlineList []*Kline `json:"kline_list"`
}
type Ticker ¶
type Ticker struct { LastPrice string `json:"last_price"` //最新价 High string `json:"high"` //高 Low string `json:"low"` //低 Amount string `json:"amount"` //成交量 Volume string `json:"volume"` //成交额 PriceRange string `json:"price_range"` //涨跌幅 Last24Price string `json:"last24_price"` //24小时前的价格 Symbol string `json:"symbol"` //交易对 }
Click to show internal directories.
Click to hide internal directories.