top_gainers
Identify top-performing cryptocurrencies by analyzing Bollinger Band movements across major exchanges and timeframes to support trading decisions.
Instructions
Return top gainers for an exchange and timeframe using bollinger band analysis.
Args:
exchange: Exchange name like KUCOIN, BINANCE, BYBIT, etc.
timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M
limit: Number of rows to return (max 50)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | KUCOIN | |
limit | No | ||
timeframe | No | 15m |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 25,
"title": "Limit",
"type": "integer"
},
"timeframe": {
"default": "15m",
"title": "Timeframe",
"type": "string"
}
},
"type": "object"
}