Module Tws.Quote

module Quote: sig .. end

module Change: sig .. end
type t = private {
   stamp : Core.Std.Time.t;
   ask_price : Price.t;
   bid_price : Price.t;
   ask_size : Volume.t;
   bid_size : Volume.t;
   change : Change.t;
}
val change : t -> Change.t
val bid_size : t -> Volume.t
val ask_size : t -> Volume.t
val bid_price : t -> Price.t
val ask_price : t -> Price.t
val stamp : t -> Core.Std.Time.t
module Fields: sig .. end
val pp : Format.formatter -> t -> unit
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t