historicalTrades
Retrieve past cryptocurrency market trades from Aster Finance to analyze trading patterns and market activity for informed decision-making.
Instructions
Get older market historical trades.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fromId | No | TradeId to fetch from. | |
| limit | No | Number of results. Default 500, max 1000. | |
| symbol | Yes | Trading symbol |
Input Schema (JSON Schema)
{
"properties": {
"fromId": {
"description": "TradeId to fetch from.",
"type": "number"
},
"limit": {
"description": "Number of results. Default 500, max 1000.",
"type": "number"
},
"symbol": {
"description": "Trading symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}