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

    Interface MarketFacilitationIndexOptions<S, Output>

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

    Type Parameters

    • S extends SeriesSchema
    • Output extends string
    Index

    Properties

    high?: NumericColumnNameForSchema<S>

    High column. Default 'high'.

    low?: NumericColumnNameForSchema<S>

    Low column. Default 'low'.

    output?: Output

    Name of the appended column. Default 'bwmfi'not 'mfi', which moneyFlowIndex already uses. See the docstring.

    volume?: NumericColumnNameForSchema<S>

    Volume column. Default 'volume'.