get_order_history
Retrieve past order records for a specific trading pair on Binance to analyze trading history and performance.
Instructions
获取历史订单记录
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | 数量限制,默认500 | |
symbol | Yes | 交易对符号,如 BTCUSDT |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 500,
"description": "数量限制,默认500",
"type": "number"
},
"symbol": {
"description": "交易对符号,如 BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}