get-volume-history
Retrieve trading volume history for specified cryptocurrency pairs over desired timeframes. Input a symbol, number of days, and exchange to access detailed market data for analysis.
Instructions
Get trading volume history over time
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days | No | Number of days of volume history (default: 7, max: 30) | |
exchange | No | Exchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc) | binance |
symbol | Yes | Trading pair symbol (e.g., BTC/USDT, ETH/USDT) |
Input Schema (JSON Schema)
{
"properties": {
"days": {
"default": 7,
"description": "Number of days of volume history (default: 7, max: 30)",
"maximum": 30,
"type": "number"
},
"exchange": {
"default": "binance",
"description": "Exchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc)",
"enum": [
"binance",
"coinbase",
"kraken",
"kucoin",
"hyperliquid",
"huobi",
"bitfinex",
"bybit",
"okx",
"mexc"
],
"type": "string"
},
"symbol": {
"description": "Trading pair symbol (e.g., BTC/USDT, ETH/USDT)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}