get_daily_trading_volume_by_dex
Fetch daily trading volume data for multiple decentralized exchanges (DEXs) in a markdown-formatted pivot table. Use this tool to analyze trading trends by DEX and date, retrieving results from a Dune Analytics query.
Instructions
Retrieve daily trading volume by decentralized exchange (DEX).
This tool fetches daily trading volume data for various DEXs from a Dune Analytics query and returns it in a markdown-formatted pivot table, with dates as the index and DEX projects 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_daily_trading_volume_by_dexArguments",
"type": "object"
}