rating_filter
Filter cryptocurrency assets by Bollinger Band rating to identify trading opportunities based on technical analysis signals across multiple exchanges and timeframes.
Instructions
Filter coins by Bollinger Band rating.
Args:
exchange: Exchange name like KUCOIN, BINANCE, BYBIT, etc.
timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M
rating: BB rating (-3 to +3): -3=Strong Sell, -2=Sell, -1=Weak Sell, 1=Weak Buy, 2=Buy, 3=Strong Buy
limit: Number of rows to return (max 50)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | KUCOIN | |
limit | No | ||
rating | No | ||
timeframe | No | 5m |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 25,
"title": "Limit",
"type": "integer"
},
"rating": {
"default": 2,
"title": "Rating",
"type": "integer"
},
"timeframe": {
"default": "5m",
"title": "Timeframe",
"type": "string"
}
},
"type": "object"
}