Binance Connector JS
    Preparing search index...

    ModifyMultipleOrdersBatchOrdersParameterInner

    interface ModifyMultipleOrdersBatchOrdersParameterInner {
        orderId?: number | bigint;
        origClientOrderId?: string;
        price?: number;
        quantity?: number;
        recvWindow?: number | bigint;
        side: DerivativesTradingCoinFuturesRestAPI.ModifyMultipleOrdersBatchOrdersParameterInnerSideEnum;
        symbol: string;
        timestamp: number | bigint;
    }
    Index

    Properties

    orderId?: number | bigint

    Sub-order ID, required when clientOrderId is not sent.

    ModifyMultipleOrdersBatchOrdersParameterInner

    origClientOrderId?: string

    Client order ID, required when orderId is not sent. Only support letters, numbers and underscores, and must be unique within 24 hours.

    ModifyMultipleOrdersBatchOrdersParameterInner

    price?: number

    Latest token price. After CM migration, this parameter becomes mandatory (each batch element must send both price and quantity).

    ModifyMultipleOrdersBatchOrdersParameterInner

    quantity?: number

    Order quantity, cannot be sent with closePosition=true. After CM migration, this parameter becomes mandatory (each batch element must send both price and quantity).

    ModifyMultipleOrdersBatchOrdersParameterInner

    recvWindow?: number | bigint

    ModifyMultipleOrdersBatchOrdersParameterInner

    Trading side

    ModifyMultipleOrdersBatchOrdersParameterInner

    symbol: string

    Trading symbol

    ModifyMultipleOrdersBatchOrdersParameterInner

    timestamp: number | bigint

    Unix timestamp in milliseconds used to sign the request. The value must reflect the current client time and is validated by the server for signed endpoints.

    ModifyMultipleOrdersBatchOrdersParameterInner