Module Tws.Trade

module Trade: sig .. end

type t = private {
   stamp : Core.Std.Time.t;
   price : Price.t;
   size : Volume.t;
}
val size : t -> Volume.t
val 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