place_market_order
Execute instant buy or sell orders on Binance by specifying the trading pair, side (BUY/SELL), and quantity. Simplifies cryptocurrency trading through automated market order placement.
Instructions
Place a market order to buy or sell.
Args: symbol: The trading pair, e.g., BTCUSDT. side: BUY or SELL. quantity: Amount to trade.
Returns: Order placement result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
quantity | Yes | ||
side | Yes | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"quantity": {
"title": "Quantity",
"type": "string"
},
"side": {
"title": "Side",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"side",
"quantity"
],
"title": "place_market_orderArguments",
"type": "object"
}