consecutive_candles_scan
Scan cryptocurrency markets to identify assets with consecutive bullish or bearish candle patterns across multiple exchanges and timeframes for technical analysis and trading opportunities.
Instructions
Scan for coins with consecutive growing/shrinking candles pattern.
Args:
exchange: Exchange name (BINANCE, KUCOIN, etc.)
timeframe: Time interval (5m, 15m, 1h, 4h)
pattern_type: "bullish" (growing candles) or "bearish" (shrinking candles)
candle_count: Number of consecutive candles to check (2-5)
min_growth: Minimum growth percentage for each candle
limit: Maximum number of results to return
Returns:
List of coins with consecutive candle patterns
Input Schema
Name | Required | Description | Default |
---|---|---|---|
candle_count | No | ||
exchange | No | KUCOIN | |
limit | No | ||
min_growth | No | ||
pattern_type | No | bullish | |
timeframe | No | 15m |
Input Schema (JSON Schema)
{
"properties": {
"candle_count": {
"default": 3,
"title": "Candle Count",
"type": "integer"
},
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"min_growth": {
"default": 2,
"title": "Min Growth",
"type": "number"
},
"pattern_type": {
"default": "bullish",
"title": "Pattern Type",
"type": "string"
},
"timeframe": {
"default": "15m",
"title": "Timeframe",
"type": "string"
}
},
"type": "object"
}