Binance Connector JS
    Preparing search index...

    Interface OrderAmendKeepPriorityRequest

    Request parameters for orderAmendKeepPriority operation in TradeApi. OrderAmendKeepPriorityRequest

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

    Properties

    id?: string

    Client-generated request identifier.

    TradeApiOrderAmendKeepPriority

    newClientOrderId?: string

    The new client order ID for the order after being amended.
    If not sent, one will be randomly generated.
    It is possible to reuse the current clientOrderId by sending it as the newClientOrderId.

    TradeApiOrderAmendKeepPriority

    newQty: number

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

    TradeApiOrderAmendKeepPriority

    orderId?: number | bigint

    orderId or origClientOrderId must be sent

    TradeApiOrderAmendKeepPriority

    origClientOrderId?: string

    orderId or origClientOrderId must be sent

    TradeApiOrderAmendKeepPriority

    recvWindow?: number

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

    TradeApiOrderAmendKeepPriority

    symbol: string

    TradeApiOrderAmendKeepPriority