23 lines
240 B
Go
23 lines
240 B
Go
// Package events ...
|
|
package events
|
|
|
|
type DataType uint8
|
|
|
|
const (
|
|
TradeType DataType = iota
|
|
QuoteType
|
|
BarType
|
|
MBPDeltaType
|
|
MBPSnapshotType
|
|
MBODeltaType
|
|
MBOSnapshotType
|
|
CustomType
|
|
)
|
|
|
|
type Side uint8
|
|
|
|
const (
|
|
Bid Side = iota
|
|
Ask
|
|
)
|