Binance Connector JS
    Preparing search index...

    Request parameters for placeOrder operation in TradeApi. PlaceOrderRequest

    interface PlaceOrderRequest {
        accountType: PlaceOrderAccountTypeEnum;
        fundingSource?: PlaceOrderFundingSourceEnum;
        fundTransferAmount?: string;
        orderType: PlaceOrderOrderTypeEnum;
        priceLimit?: string;
        quoteId: string;
        slippageBps: number;
        timeInForce: string;
        walletAddress: string;
        walletId: string;
    }
    Index

    Properties

    Payment account type. Enum: SPOT, FUNDING

    TradeApiPlaceOrder

    Funding source. Enum: MPC, CEX. Default MPC

    TradeApiPlaceOrder

    fundTransferAmount?: string

    Auto-transfer amount before order (wei). Must be > 0 if provided

    TradeApiPlaceOrder

    Order type. Enum: MARKET, LIMIT

    TradeApiPlaceOrder

    priceLimit?: string

    Limit price. Required when orderType=LIMIT. Must be > 0

    TradeApiPlaceOrder

    quoteId: string

    Quote ID obtained from Get Quote

    TradeApiPlaceOrder

    slippageBps: number

    Slippage tolerance in basis points. Range 1–10000

    TradeApiPlaceOrder

    timeInForce: string

    Must match orderType: FOK for MARKET, GTC for LIMIT

    TradeApiPlaceOrder

    walletAddress: string

    User's prediction wallet address

    TradeApiPlaceOrder

    walletId: string

    Wallet ID

    TradeApiPlaceOrder