binance_us_new_order
Place new trading orders on Binance.US for spot trading, supporting multiple order types including LIMIT, MARKET, STOP_LOSS, and TAKE_PROFIT to execute buy or sell transactions.
Instructions
Place a new trade order on Binance.US. Supports LIMIT, MARKET, STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT, and LIMIT_MAKER order types.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | Trading pair symbol (e.g., BTCUSD, ETHUSD) | |
| side | Yes | Order side: BUY or SELL | |
| type | Yes | Order type: LIMIT, MARKET, STOP_LOSS, STOP_LOSS_LIMIT, TAKE_PROFIT, TAKE_PROFIT_LIMIT, LIMIT_MAKER | |
| timeInForce | No | Time in force: GTC (Good Till Cancel), IOC (Immediate Or Cancel), FOK (Fill Or Kill). Required for LIMIT orders. | |
| quantity | No | Order quantity in base asset. Required for most order types. | |
| quoteOrderQty | No | Order quantity in quote asset. Can be used for MARKET orders instead of quantity. | |
| price | No | Order price. Required for LIMIT and LIMIT_MAKER orders. | |
| newClientOrderId | No | Unique client order ID. Auto-generated if not provided. | |
| stopPrice | No | Stop price. Required for STOP_LOSS_LIMIT and TAKE_PROFIT_LIMIT orders. | |
| trailingDelta | No | Trailing delta for trailing stop orders in BIPS (1 BIP = 0.01%). | |
| icebergQty | No | Iceberg quantity for iceberg orders. timeInForce must be GTC. | |
| newOrderRespType | No | Response type: ACK, RESULT, or FULL. MARKET/LIMIT default to FULL, others to ACK. | |
| selfTradePreventionMode | No | Self-trade prevention mode: EXPIRE_TAKER, EXPIRE_MAKER, EXPIRE_BOTH, NONE. | |
| recvWindow | No | Receive window in milliseconds (max 60000). |