get_latest_trading_volume_by_aggregator
Retrieve trading volume data by aggregator for the past 24 hours and 7 days. Returns a markdown-formatted table to analyze DEX metrics or an error message if the query fails.
Instructions
Retrieve the latest 24-hour and 7-day trading volume by aggregator.
Args:
limit (int, optional): Maximum number of rows to retrieve from the query. Defaults to 1000.
Returns:
str: A markdown-formatted table of trading volume data, or an error message if the query fails.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 1000,
"title": "Limit",
"type": "integer"
}
},
"title": "get_latest_trading_volume_by_aggregatorArguments",
"type": "object"
}