Binance Connector JS
    Preparing search index...

    Request parameters for modifyOrder operation in TradeApi. ModifyOrderRequest

    interface ModifyOrderRequest {
        orderId?: number | bigint;
        origClientOrderId?: string;
        price?: number;
        priceMatch?: DerivativesTradingCoinFuturesRestAPI.ModifyOrderPriceMatchEnum;
        quantity?: number;
        recvWindow?: number | bigint;
        side: DerivativesTradingCoinFuturesRestAPI.ModifyOrderSideEnum;
        symbol: string;
    }
    Index

    Properties

    orderId?: number | bigint

    Order ID

    TradeApiModifyOrder

    origClientOrderId?: string

    Client order ID

    TradeApiModifyOrder

    price?: number

    Order price. After CM migration, this parameter becomes mandatory (must be sent together with quantity).

    TradeApiModifyOrder

    only avaliable for LIMIT/STOP/TAKE_PROFIT order; Can't be passed together with price

    TradeApiModifyOrder

    quantity?: number

    Order quantity, cannot be sent with closePosition=true. After CM migration, this parameter becomes mandatory (must be sent together with price).

    TradeApiModifyOrder

    recvWindow?: number | bigint

    TradeApiModifyOrder

    TradeApiModifyOrder

    symbol: string

    Symbol

    TradeApiModifyOrder