aggTrades
Retrieve compressed aggregate market trades for cryptocurrency symbols to analyze trading patterns and market activity with timestamp and volume data.
Instructions
Get compressed, aggregate market trades.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | Timestamp in ms to get aggregate trades until INCLUSIVE. | |
| fromId | No | ID to get aggregate trades from INCLUSIVE. | |
| limit | No | Number of results. Default 500, max 1000. | |
| startTime | No | Timestamp in ms to get aggregate trades from INCLUSIVE. | |
| symbol | Yes | Trading symbol |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "Timestamp in ms to get aggregate trades until INCLUSIVE.",
"type": "number"
},
"fromId": {
"description": "ID to get aggregate trades from INCLUSIVE.",
"type": "number"
},
"limit": {
"description": "Number of results. Default 500, max 1000.",
"type": "number"
},
"startTime": {
"description": "Timestamp in ms to get aggregate trades from INCLUSIVE.",
"type": "number"
},
"symbol": {
"description": "Trading symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}