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

    Interface EaseOfMovementOptions<S, Output>

    interface EaseOfMovementOptions<S extends SeriesSchema, Output extends string> {
        high?: NumericColumnNameForSchema<S>;
        low?: NumericColumnNameForSchema<S>;
        maType?: MaType;
        output?: Output;
        period?: number;
        scale?: number;
        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'.

    maType?: MaType

    Which moving average smooths the 1-bar value — any of the shared MaType menu. Default 'sma'.

    output?: Output

    Name of the appended column. Default 'eom'.

    period?: number

    Smoothing length in bars. Default 14.

    scale?: number

    Volume divisor in the box ratio. Default 100_000_000 (StockCharts' / ChartIQ's convention). A pure scale factor — see the docstring.

    volume?: NumericColumnNameForSchema<S>

    Volume column. Default 'volume'.