Files
tessera/core/data/events/trade.go
2025-11-27 20:34:34 +08:00

17 lines
206 B
Go

package events
type Trade struct {
Price float64
Qty float64
Aggressor AggressorSide
TradeID string
}
type AggressorSide uint8
const (
AggUnknown AggressorSide = iota
AggBuy
AggSell
)