Reincharts
    Preparing search index...

    Interface VolumeProfileSeriesProps

    interface VolumeProfileSeriesProps {
        absoluteChange: (data: any) => number;
        bins: number;
        bySession?: boolean;
        fill?: (widthType: { type: "up" | "down"; width: number }) => string;
        maxProfileWidthPercent: number;
        orient?: "left" | "right";
        partialEndOK?: boolean;
        partialStartOK?: boolean;
        sessionBackground?: string;
        sessionStart: (__namedParameters: any) => boolean;
        showSessionBackground?: boolean;
        source: (d: number, i: number, data: ArrayLike<number>) => number;
        stroke?: string;
        volume: (data: any) => number;
    }
    Index

    Properties

    absoluteChange: (data: any) => number

    Function to extract absolute price change from data.

    bins: number

    Number of bins to divide the price range into for volume distribution.

    bySession?: boolean

    Whether to create separate volume profiles for each session.

    fill?: (widthType: { type: "up" | "down"; width: number }) => string

    Function to determine fill color based on volume type (up/down) and width.

    maxProfileWidthPercent: number

    Maximum width of volume profile as percentage of chart area.

    orient?: "left" | "right"

    Orientation of the volume profile bars.

    partialEndOK?: boolean

    Whether partial session data at end is acceptable.

    partialStartOK?: boolean

    Whether partial session data at start is acceptable.

    sessionBackground?: string

    Background color for session periods.

    sessionStart: (__namedParameters: any) => boolean

    Function to determine if a data point marks the start of a new session.

    showSessionBackground?: boolean

    Whether to show background highlighting for sessions.

    source: (d: number, i: number, data: ArrayLike<number>) => number

    Function to extract price source value for volume distribution.

    stroke?: string

    Stroke color for volume profile bars.

    volume: (data: any) => number

    Function to extract volume value from data.