interface Tier2Context {
    bars: readonly Bar[];
    dataContext?: Readonly<ChartDataContext>;
    from: number;
    settings: Readonly<IndicatorSettings>;
    signal?: AbortSignal;
    to: number;
}

Properties

bars: readonly Bar[]

The chart's current source bars — use for the requested time window.

dataContext?: Readonly<ChartDataContext>

Host identity when supplied. Indicator settings remain independent.

from: number

UTC seconds of the first and last source bar (0 when there are none).

settings: Readonly<IndicatorSettings>
signal?: AbortSignal

Cancelled when this request is obsolete or the instance is removed.

to: number