bollinger_scan
Scan cryptocurrency markets to identify coins with Bollinger Band squeezes, indicating potential breakout opportunities. Filter by exchange, timeframe, and BBW threshold to find low volatility assets ready for significant price movements.
Instructions
Scan for coins with low Bollinger Band Width (squeeze detection).
Args:
exchange: Exchange name like KUCOIN, BINANCE, BYBIT, etc.
timeframe: One of 5m, 15m, 1h, 4h, 1D, 1W, 1M
bbw_threshold: Maximum BBW value to filter (default 0.04)
limit: Number of rows to return (max 100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bbw_threshold | No | ||
exchange | No | KUCOIN | |
limit | No | ||
timeframe | No | 4h |
Input Schema (JSON Schema)
{
"properties": {
"bbw_threshold": {
"default": 0.04,
"title": "Bbw Threshold",
"type": "number"
},
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 50,
"title": "Limit",
"type": "integer"
},
"timeframe": {
"default": "4h",
"title": "Timeframe",
"type": "string"
}
},
"type": "object"
}