Binance Connector JS
    Preparing search index...

    Request parameters for orderCancel operation in TradeApi. OrderCancelRequest

    interface OrderCancelRequest {
        cancelRestrictions?: OrderCancelCancelRestrictionsEnum;
        id?: string;
        newClientOrderId?: string;
        orderId?: number | bigint;
        origClientOrderId?: string;
        recvWindow?: number;
        symbol: string;
    }
    Index

    Properties

    Supported values:
    ONLY_NEW - Cancel will succeed if the order status is NEW.
    ONLY_PARTIALLY_FILLED - Cancel will succeed if order status is PARTIALLY_FILLED.

    TradeApiOrderCancel

    id?: string

    Client-generated request identifier.

    TradeApiOrderCancel

    newClientOrderId?: string

    Used to uniquely identify this cancel. Automatically generated by default.

    TradeApiOrderCancel

    orderId?: number | bigint

    TradeApiOrderCancel

    origClientOrderId?: string

    TradeApiOrderCancel

    recvWindow?: number

    Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified.

    TradeApiOrderCancel

    symbol: string

    TradeApiOrderCancel