Module Order_book.Price_level

type t = {
  1. price : Base.float;
  2. size : Base.float;
  3. orders : Base.int;
}
val create : price:Base.float -> size:Base.float -> orders:Base.int -> t
val total_value : t -> Base__Float.t
val average_order_size : t -> Base__Float.t