15 lines
186 B
Go
15 lines
186 B
Go
package events
|
|
|
|
type MBOSnapshot struct {
|
|
Orders []OrderEntry
|
|
Seq uint64
|
|
}
|
|
|
|
type OrderEntry struct {
|
|
OrderID string
|
|
Side Side
|
|
Price float64
|
|
Size float64
|
|
IsMaker bool
|
|
}
|