getTradeList
Retrieve cryptocurrency trade history for a specific trading pair and account on Aster Finance, allowing users to analyze transaction data within specified timeframes and parameters.
Instructions
Get trades for a specific account and symbol.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | ||
| fromId | No | ||
| limit | No | ||
| startTime | No | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"type": "number"
},
"fromId": {
"type": "number"
},
"limit": {
"type": "number"
},
"startTime": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}