Binance Connector JS
    Preparing search index...

    Interface OrderAmendKeepPriorityRequest

    Request parameters for orderAmendKeepPriority operation in TradeApi. OrderAmendKeepPriorityRequest

    interface OrderAmendKeepPriorityRequest {
        newClientOrderId?: string;
        newQty: number;
        orderId?: number;
        origClientOrderId?: string;
        recvWindow?: number;
        symbol: string;
    }
    Index

    Properties

    newClientOrderId?: string

    A unique id among open orders. Automatically generated if not sent.
    Orders with the same newClientOrderID can be accepted only when the previous one is filled, otherwise the order will be rejected.

    TradeApiOrderAmendKeepPriority

    newQty: number

    newQty must be greater than 0 and less than the order's quantity.

    TradeApiOrderAmendKeepPriority

    orderId?: number

    TradeApiOrderAmendKeepPriority

    origClientOrderId?: string

    TradeApiOrderAmendKeepPriority

    recvWindow?: number

    The value cannot be greater than 60000

    TradeApiOrderAmendKeepPriority

    symbol: string

    TradeApiOrderAmendKeepPriority