package
Version:
v1.0.7
Opens a new window with list of versions in this module.
Published: May 15, 2021
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Depth struct {
Ch string `json:"ch"`
Ts uint `json:"ts"`
Tick struct {
Bids [][]float64 `json:"bids"`
Asks [][]float64 `json:"asks"`
} `json:"tick"`
}
type Trade struct {
Ch string `json:"ch"`
Ts uint `json:"ts"`
Tick struct {
ID uint `json:"id"`
Ts uint `json:"ts"`
Data []TradeItem `json:"data"`
} `json:"tick"`
}
type TradeItem struct {
Ts uint `json:"ts"`
ID uint `json:"id"`
Direction string `json:"direction"`
Amount float64 `json:"amount"`
Price float64 `json:"price"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.