cancel_all_orders
Cancel all open orders for a specific trading pair on Binance exchange to manage positions and reduce exposure.
Instructions
取消指定交易对所有挂单 - 支持主网和测试网
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | 交易对符号,如 BTCUSDT |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "交易对符号,如 BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}