cancel_order
Cancel a specific cryptocurrency order on Binance by providing the trading pair and order ID. Ideal for managing trading strategies and adjusting market positions effectively.
Instructions
Cancel a specific order.
Args: symbol: The trading pair. order_id: Order ID to cancel.
Returns: Cancellation result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_id | Yes | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"order_id": {
"title": "Order Id",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol",
"order_id"
],
"title": "cancel_orderArguments",
"type": "object"
}