Module GapiSheetsV4Model.CandlestickDataSource

Sourcetype t = {
  1. lowSeries : CandlestickSeries.t;
    (*

    The range data (vertical axis) for the low/minimum value for each candle. This is the bottom of the candle's center line.

    *)
  2. openSeries : CandlestickSeries.t;
    (*

    The range data (vertical axis) for the open/initial value for each candle. This is the bottom of the candle body. If less than the close value the candle will be filled. Otherwise the candle will be hollow.

    *)
  3. closeSeries : CandlestickSeries.t;
    (*

    The range data (vertical axis) for the close/final value for each candle. This is the top of the candle body. If greater than the open value the candle will be filled. Otherwise the candle will be hollow.

    *)
  4. highSeries : CandlestickSeries.t;
    (*

    The range data (vertical axis) for the high/maximum value for each candle. This is the top of the candle's center line.

    *)
}
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t