get_latest_trading_volume_by_dex
Retrieve 24-hour and 7-day trading volume data by decentralized exchange (DEX) for informed analysis. Returns markdown-formatted results or error messages if query fails.
Instructions
Retrieve the latest 24-hour and 7-day trading volume by decentralized exchange (DEX).
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_dexArguments",
"type": "object"
}