package scid

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. datetime : float;
  2. o : float;
  3. h : float;
  4. l : float;
  5. c : float;
  6. num_trades : int64;
  7. total_volume : int64;
  8. bid_volume : int64;
  9. ask_volume : int64;
}

SierraChart's s_IntradayRecord

val pp : Format.formatter -> t -> unit
val compare : t -> t -> int

compare r r' is Pervasives.compare of their serialized representation.

val size : int

size is the size of a (serialized) record, in bytes.

val read : Bytes.t -> int -> t

read ~pos b is the record serialized in b starting at pos.

val write : t -> Bytes.t -> int -> unit

write t ~pos b writes t in b at pos.

OCaml

Innovation. Community. Security.