mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
41 lines
897 B
Go
41 lines
897 B
Go
|
package bbgo
|
||
|
|
||
|
/*
|
||
|
|
||
|
kline
|
||
|
|
||
|
{
|
||
|
"e": "kline", // KLineEvent type
|
||
|
"E": 123456789, // KLineEvent time
|
||
|
"s": "BNBBTC", // Symbol
|
||
|
"k": {
|
||
|
"t": 123400000, // Kline start time
|
||
|
"T": 123460000, // Kline close time
|
||
|
"s": "BNBBTC", // Symbol
|
||
|
"i": "1m", // Interval
|
||
|
"f": 100, // First trade ID
|
||
|
"L": 200, // Last trade ID
|
||
|
"o": "0.0010", // Open price
|
||
|
"c": "0.0020", // Close price
|
||
|
"h": "0.0025", // High price
|
||
|
"l": "0.0015", // Low price
|
||
|
"v": "1000", // Base asset volume
|
||
|
"n": 100, // Number of trades
|
||
|
"x": false, // Is this kline closed?
|
||
|
"q": "1.0000", // Quote asset volume
|
||
|
"V": "500", // Taker buy base asset volume
|
||
|
"Q": "0.500", // Taker buy quote asset volume
|
||
|
"B": "123456" // Ignore
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
*/
|
||
|
type EventBase struct {
|
||
|
Event string `json:"e"` // event
|
||
|
Time int64 `json:"E"`
|
||
|
}
|
||
|
|