advanced_candle_pattern
Identify cryptocurrency trading opportunities by detecting progressive candle size increase patterns across multiple timeframes to spot emerging market momentum.
Instructions
Advanced candle pattern analysis using multi-timeframe data.
Args:
exchange: Exchange name (BINANCE, KUCOIN, etc.)
base_timeframe: Base timeframe for analysis (5m, 15m, 1h, 4h)
pattern_length: Number of consecutive periods to analyze (2-4)
min_size_increase: Minimum percentage increase in candle size
limit: Maximum number of results to return
Returns:
Coins with progressive candle size increase patterns
Input Schema
Name | Required | Description | Default |
---|---|---|---|
base_timeframe | No | 15m | |
exchange | No | KUCOIN | |
limit | No | ||
min_size_increase | No | ||
pattern_length | No |
Input Schema (JSON Schema)
{
"properties": {
"base_timeframe": {
"default": "15m",
"title": "Base Timeframe",
"type": "string"
},
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 15,
"title": "Limit",
"type": "integer"
},
"min_size_increase": {
"default": 10,
"title": "Min Size Increase",
"type": "number"
},
"pattern_length": {
"default": 3,
"title": "Pattern Length",
"type": "integer"
}
},
"type": "object"
}