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

    Type Alias PivotPointsOptions<S, Prefix, Method>

    PivotPointsOptions: SessionAnchorOptions<S> & {
        close?: NumericColumnNameForSchema<S>;
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        method?: Method;
        prefix?: Prefix;
    }

    Type Parameters

    • S extends SeriesSchema
    • Prefix extends string
    • Method extends PivotMethod

    Type Declaration

    • Optionalclose?: NumericColumnNameForSchema<S>

      Close column. Default 'close'.

    • Optionalhigh?: NumericColumnNameForSchema<S>

      High column. Default 'high'.

    • Optionallow?: NumericColumnNameForSchema<S>

      Low column. Default 'low'.

    • Optionalmethod?: Method

      Which formula set. Default 'standard'. 'camarilla' appends a fourth pair (${prefix}R4 / ${prefix}S4); the other three do not.

    • Optionalprefix?: Prefix

      Column-family prefix. Default 'pp'.