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

    Interface ShinoharaIntensityRatioOptions<S, Prefix>

    interface ShinoharaIntensityRatioOptions<
        S extends SeriesSchema,
        Prefix extends string,
    > {
        close?: NumericColumnNameForSchema<S>;
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        open?: NumericColumnNameForSchema<S>;
        period?: number;
        prefix?: Prefix;
    }

    Type Parameters

    • S extends SeriesSchema
    • Prefix extends string
    Index

    Properties

    close?: NumericColumnNameForSchema<S>

    Close column. Default 'close'.

    high?: NumericColumnNameForSchema<S>

    High column. Default 'high'.

    low?: NumericColumnNameForSchema<S>

    Low column. Default 'low'.

    open?: NumericColumnNameForSchema<S>

    Open column. Default 'open'.

    period?: number

    Window in bars. Default 26 (Shinohara's).

    prefix?: Prefix

    Column-family prefix — appends ${prefix}Strong and ${prefix}Weak. Default 'sir'.