|
enum | Direction : int {
Direction.Undefined = 0,
Direction.Down = 0,
Direction.ZeroDown = 1,
Direction.Zero = 3,
Direction.ZeroUp = 4,
Direction.Up = 5
} |
| Direction of a trade. More...
|
|
enum | EventFlag : int {
EventFlag.TxPending = 0x01,
EventFlag.RemoveEvent = 0x02,
EventFlag.SnapshotBegin = 0x04,
EventFlag.SnapshotEnd = 0x08,
EventFlag.SnapshotSnip = 0x10,
EventFlag.RemoveSymbol = 0x20
} |
| Events flag enumeration More...
|
|
enum | EventType : int {
EventType.None = 0,
EventType.Trade = (1 << 0),
EventType.Quote = (1 << 1),
EventType.Summary = (1 << 2),
EventType.Profile = (1 << 3),
EventType.Order = (1 << 4),
EventType.TimeAndSale = (1 << 5),
EventType.Candle = (1 << 6),
EventType.TradeETH = (1 << 7),
EventType.SpreadOrder = (1 << 8),
EventType.Greeks = (1 << 9),
EventType.TheoPrice = (1 << 10),
EventType.Underlying = (1 << 11),
EventType.Series = (1 << 12),
EventType.Configuration = (1 << 13)
} |
|
enum | PriceType : int { PriceType.Regular = 0,
PriceType.Indicative = 1,
PriceType.Preliminary = 2,
PriceType.Final = 3
} |
| Price type enumeration More...
|
|
enum | Scope : int { Scope.Composite = 0,
Scope.Regional = 1,
Scope.Aggregate = 2,
Scope.Order = 3
} |
| Scope of an order. More...
|
|
enum | ShortSaleRestriction : int { ShortSaleRestriction.Undefined = 0,
ShortSaleRestriction.Active = 1,
ShortSaleRestriction.Inactive = 2
} |
| Short sale restriction on an instrument. More...
|
|
enum | Side : int { Side.Undefined = 0,
Side.Buy = 1,
Side.Sell = 2
} |
| Side of an order or a trade. More...
|
|
enum | TimeAndSaleType : int { TimeAndSaleType.New = 0,
TimeAndSaleType.Correction = 1,
TimeAndSaleType.Cancel = 2
} |
| Type of a time and sale event. More...
|
|
enum | TradingStatus : int { TradingStatus.Undefined = 0,
TradingStatus.Halted = 1,
TradingStatus.Active = 2
} |
| Trading status of an instrument. More...
|
|