Chartbreaker
    Preparing search index...

    Interface TrackingData

    Contains all tracking fields which are sent to the metrics server

    interface TrackingData {
        action: string;
        bgTradingVersion: string;
        broker: string;
        brokerEnvironment: string;
        order?: {
            brokerExchangeId: string;
            brokerExchangeName: string;
            direction?: string;
            exchangeId?: number;
            executedBy?: string;
            instrumentId?: number;
            isRealMoneyPortfolio?: boolean;
            limit?: number;
            orderModel: string;
            quoteLimit?: number;
            size: number;
            source?: string;
            stop?: number;
            stopLimit?: number;
            stopLoss?: number;
            takeProfit?: number;
            validityDate?: string;
            validityType?: string;
        };
        platform: string;
        userId: string;
    }
    Index

    Properties

    action: string
    bgTradingVersion: string
    broker: string
    brokerEnvironment: string
    order?: {
        brokerExchangeId: string;
        brokerExchangeName: string;
        direction?: string;
        exchangeId?: number;
        executedBy?: string;
        instrumentId?: number;
        isRealMoneyPortfolio?: boolean;
        limit?: number;
        orderModel: string;
        quoteLimit?: number;
        size: number;
        source?: string;
        stop?: number;
        stopLimit?: number;
        stopLoss?: number;
        takeProfit?: number;
        validityDate?: string;
        validityType?: string;
    }

    Type Declaration

    • brokerExchangeId: string
    • brokerExchangeName: string
    • Optionaldirection?: string
    • OptionalexchangeId?: number
    • OptionalexecutedBy?: string

      Optional property which can by set to indicate that what component executed the order (e.g. Order widget, live trading, chart trading, etc.)

    • OptionalinstrumentId?: number
    • OptionalisRealMoneyPortfolio?: boolean
    • Optionallimit?: number
    • orderModel: string
    • OptionalquoteLimit?: number
    • size: number
    • Optionalsource?: string

      Optional property which can by set to indicate where the order flow has started

    • Optionalstop?: number
    • OptionalstopLimit?: number
    • OptionalstopLoss?: number
    • OptionaltakeProfit?: number
    • OptionalvalidityDate?: string
    • OptionalvalidityType?: string
    platform: string
    userId: string