Interface IOrderLine<T, A, L>
A single order resting on a Level-3 (market-by-order) book.
public interface IOrderLine<T, A, L> where T : notnull where A : IFixedPointAmount where L : IFixedPointAmount
Type Parameters
TOrder identity type.
ASize amount type.
LPrice amount type.
Properties
Id
The order's identity on the venue.
T Id { get; }
Property Value
- T
Price
The order's limit price.
L Price { get; }
Property Value
- L
Side
Buy or sell side.
BuyOrSell Side { get; }
Property Value
Size
The order's remaining size.
A Size { get; }
Property Value
- A