@pond-ts/charts API Reference
    Preparing search index...

    Interface OhlcSeries

    A chart-ready view of an OHLC series (Candlestick): the candle's horizontal slot (x = left edge, xEnd = right edge) plus the four price channels per mark — open/high/low/close. The chart derives the body extents (min/max of open/close) itself at draw time; only the four raw columns are read here.

    A mark is drawn only where all four prices are finite; any one NaN is a gap (the candle draws nothing — same gap contract as BoxSeries).

    Unlike BoxSeries (interval-keyed only), the OHLC view supports both key shapes, like BarSeries: an interval-keyed series (an aggregate rollup — weekly/monthly bars) uses the key's own [begin, end) as the slot; a point-keyed series (raw daily OHLCV) derives the slot from neighbour spacing (see ohlcFromTimeSeries), so it feeds straight in with no aggregate pass.

    interface OhlcSeries {
        close: Float64Array;
        high: Float64Array;
        length: number;
        low: Float64Array;
        open: Float64Array;
        x: Float64Array;
        xEnd: Float64Array;
    }
    Index

    Properties

    close: Float64Array
    high: Float64Array
    length: number
    low: Float64Array
    open: Float64Array
    x: Float64Array
    xEnd: Float64Array