cancel_order
Cancel a specific trading order on Binance exchange by providing the trading pair symbol and order ID to manage open positions effectively.
Instructions
取消指定订单 - 支持主网和测试网
Input Schema
Name | Required | Description | Default |
---|---|---|---|
orderId | Yes | 订单ID | |
symbol | Yes | 交易对符号,如 BTCUSDT |
Input Schema (JSON Schema)
{
"properties": {
"orderId": {
"description": "订单ID",
"type": "number"
},
"symbol": {
"description": "交易对符号,如 BTCUSDT",
"type": "string"
}
},
"required": [
"symbol",
"orderId"
],
"type": "object"
}