@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface IndicatorSeries

    One computed output stream of an indicator. An indicator can return multiple series (e.g. Bollinger Bands returns upper, middle, lower).

    values is aligned 1:1 with the input buffer (index 0 = buffer[0]). Positions where the value is undefined (e.g. before the warmup period is satisfied) contain NaN. Renderers must skip NaN values.

    interface IndicatorSeries {
        name: string;
        values: Float64Array;
    }
    Index

    Properties

    Properties

    name: string
    values: Float64Array