get_open_orders
Retrieve current open orders from Binance exchange to monitor pending trades and manage active positions efficiently.
Instructions
获取当前挂单
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | No | 特定交易对的挂单,不传则获取所有挂单 |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "特定交易对的挂单,不传则获取所有挂单",
"type": "string"
}
},
"required": [],
"type": "object"
}