get_order_history
Retrieve filled order history for specific instruments within defined time periods to analyze trading activity and performance.
Instructions
Get a list of filled orders for a given date range and optional symbol filter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
begin | No | the beginning of the time range in timestamp format | |
end | No | the end of the time range in timestamp format | |
instId | Yes | Instrument ID (symbol), e.g. BTC-USDT |
Input Schema (JSON Schema)
{
"properties": {
"begin": {
"description": "the beginning of the time range in timestamp format",
"type": "number"
},
"end": {
"description": "the end of the time range in timestamp format",
"type": "number"
},
"instId": {
"description": "Instrument ID (symbol), e.g. BTC-USDT",
"type": "string"
}
},
"required": [
"instId"
],
"type": "object"
}