interface PriceLevelInput {
    anchorTime?: number;
    bars: readonly Bar[];
    marketPhase?: null | MarketPhaseFn;
    quote?: null | PriceLevelQuote;
    timezone?: string;
}

Properties

anchorTime?: number

UTC seconds at the right edge of the viewport: the session containing it is "the session in view", and the level before it is its previous session. Default (and anything past the last bar) anchors on the last bar.

bars: readonly Bar[]
marketPhase?: null | MarketPhaseFn
quote?: null | PriceLevelQuote
timezone?: string