Interface IInitialBalance

Represents the initial balance of a trading session in volume profile, defined by its high and low price points.

interface IInitialBalance {
    high: number;
    low: number;
}

Properties

Properties

high: number

The highest price within the initial balance period.

low: number

The lowest price within the initial balance period.

Generated using TypeDoc