Binance Connector JS
    Preparing search index...

    Request parameters for sorOrderPlace operation in TradeApi. SorOrderPlaceRequest

    interface SorOrderPlaceRequest {
        icebergQty?: number;
        id?: string;
        newClientOrderId?: string;
        newOrderRespType?: SorOrderPlaceNewOrderRespTypeEnum;
        price?: number;
        quantity: number;
        recvWindow?: number;
        selfTradePreventionMode?: SorOrderPlaceSelfTradePreventionModeEnum;
        side: SorOrderPlaceSideEnum;
        strategyId?: number | bigint;
        strategyType?: number;
        symbol: string;
        timeInForce?: SorOrderPlaceTimeInForceEnum;
        type: SorOrderPlaceTypeEnum;
    }
    Index

    Properties

    icebergQty?: number

    Used with LIMIT to create an iceberg order.

    TradeApiSorOrderPlace

    id?: string

    Client-generated request identifier.

    TradeApiSorOrderPlace

    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.

    TradeApiSorOrderPlace

    Set the response JSON. ACK, RESULT, or FULL. Default to FULL

    TradeApiSorOrderPlace

    price?: number

    TradeApiSorOrderPlace

    quantity: number

    TradeApiSorOrderPlace

    recvWindow?: number

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

    TradeApiSorOrderPlace

    The allowed enums is dependent on what is configured on the symbol. The possible supported values are: STP Modes.

    TradeApiSorOrderPlace

    BUY or SELL

    TradeApiSorOrderPlace

    strategyId?: number | bigint

    TradeApiSorOrderPlace

    strategyType?: number

    The value cannot be less than 1000000.

    TradeApiSorOrderPlace

    symbol: string

    TradeApiSorOrderPlace

    Applicable only to LIMIT order type.

    TradeApiSorOrderPlace

    Only LIMIT and MARKET orders are supported.

    TradeApiSorOrderPlace