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

    Interface AccumulationDistributionOptions<S, Output>

    interface AccumulationDistributionOptions<
        S extends SeriesSchema,
        Output extends string,
    > {
        close?: NumericColumnNameForSchema<S>;
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        output?: Output;
        volume?: NumericColumnNameForSchema<S>;
    }

    Type Parameters

    • S extends SeriesSchema
    • Output 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'.

    output?: Output

    Name of the appended column. Default 'ad'.

    volume?: NumericColumnNameForSchema<S>

    Volume column. Default 'volume'.