Interface IVolumeProfileConfig

Configuration used for building Volume Profile.

IVolumeProfileConfig

interface IVolumeProfileConfig {
    candles: ICandle[];
    period: MARKET_PROFILE_PERIODS;
    tickSize: number;
    timezone: string;
    valueAreaRowSize?: number;
    valueAreaVolume?: number;
}

Properties

candles: ICandle[]

Candle Array.

Specifies the time period over which the Volume Profile is calculated.

tickSize: number

The minimum price increment defining price level resolution, e.g., 0.1 for BTCUSDT.

timezone: string

The timezone to use for time-based calculations, e.g., 'Europe/London'.

valueAreaRowSize?: number

The number of Value Area rows.

valueAreaVolume?: number

The Value Area percentage.

Generated using TypeDoc