interface MarketProfileLevel {
    count: number;
    letters: string;
    periods: number[];
    price: number;
    volume: number;
}

Properties

count: number

Distinct periods (TPOs) that traded at this price.

letters: string

Period letters at this price, in period order (e.g. "ABF").

periods: number[]

Period indices at this price — the renderer colours blocks from these.

price: number
volume: number

Volume traded at this price (each bar's volume split across its range).