Chartbreaker
    Preparing search index...
    type TInput = {
        chartHasMultipleTimeseries: boolean;
        identifier: string;
        isLogarithmic: boolean;
        isRelative: boolean;
        ohlcSet: TOHLCSet;
        precision: number;
        properties: Record<string, any>;
        subscribePush: (
            identifier: string,
            cb: (data: TPush) => void,
        ) => { unbind: () => void };
    }
    Index

    Properties

    chartHasMultipleTimeseries: boolean
    identifier: string
    isLogarithmic: boolean
    isRelative: boolean
    ohlcSet: TOHLCSet
    precision: number
    properties: Record<string, any>
    subscribePush: (
        identifier: string,
        cb: (data: TPush) => void,
    ) => { unbind: () => void }