14 lines
167 B
Go
14 lines
167 B
Go
package events
|
|
|
|
type MBPSnapshot struct {
|
|
Bids []PriceLevel
|
|
Asks []PriceLevel
|
|
Depth int
|
|
Seq uint64
|
|
}
|
|
|
|
type PriceLevel struct {
|
|
Price float64
|
|
Size float64
|
|
}
|