get_yoy_monthly_trading_volume_by_aggragator
Analyze year-over-year monthly trading volume trends by aggregator. Retrieve data in a markdown-formatted pivot table to compare metrics across years and months.
Instructions
Retrieve year-over-year monthly trading volume by aggregator.
This tool fetches year-over-year monthly trading volume data for aggregators from a Dune Analytics query and returns it in a markdown-formatted pivot table, with years as the index and months as columns.
Args:
limit (int, optional): Maximum number of rows to retrieve from the query. Defaults to 1000.
Returns:
str: A markdown-formatted pivot 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_yoy_monthly_trading_volume_by_aggragatorArguments",
"type": "object"
}