Interface IL3OrderBook<O, T, A, L>
A Level-3 (market-by-order) order book: individual resting orders rather than aggregated price levels.
public interface IL3OrderBook<O, T, A, L> : IOrderBook where O : IOrderLine<T, A, L> where T : notnull where A : IFixedPointAmount where L : IFixedPointAmount
Type Parameters
OConcrete order-line type.
TOrder identity type.
ASize amount type.
LPrice amount type.
Properties
Orders
The orders currently resting on the book.
IEnumerable<O> Orders { get; }
Property Value
- IEnumerable<O>