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

    Interface TwiggsMoneyFlowOptions<S, Output>

    interface TwiggsMoneyFlowOptions<S extends SeriesSchema, Output extends string> {
        close?: NumericColumnNameForSchema<S>;
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        output?: Output;
        period?: number;
        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 'tmf'.

    period?: number

    Smoothing length in bars. Default 21 (Twiggs').

    volume?: NumericColumnNameForSchema<S>

    Volume column. Default 'volume'.