Further scaffolding
This commit is contained in:
22
core/data/events/domain.go
Normal file
22
core/data/events/domain.go
Normal file
@@ -0,0 +1,22 @@
|
||||
// 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
|
||||
)
|
||||
Reference in New Issue
Block a user