Module Response.Tick_price

module Tick_price: sig .. end

module Type: sig .. end
type t = private {
   tick_type : Type.t;
   price : Price.t;
   size : Volume.t;
   can_auto_execute : bool option;
}
val can_auto_execute : t -> bool option
val size : t -> Volume.t
val price : t -> Price.t
val tick_type : t -> Type.t
module Fields: sig .. end
include Response_intf.S
val create : tick_type:Type.t ->
price:Price.t ->
size:Volume.t -> can_auto_execute:bool option -> t
val price : t -> Price.t
val pp : Format.formatter -> t -> unit
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t