smart_volume_scanner
Scan cryptocurrency markets for assets with significant volume spikes and technical analysis conditions to identify potential trading opportunities based on volume ratios, price changes, and RSI levels.
Instructions
Smart volume + technical analysis combination scanner.
Args:
exchange: Exchange name
min_volume_ratio: Minimum volume multiplier (default 2.0)
min_price_change: Minimum price change percentage (default 2.0)
rsi_range: "oversold" (<30), "overbought" (>70), "neutral" (30-70), "any"
limit: Number of results (max 30)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | KUCOIN | |
limit | No | ||
min_price_change | No | ||
min_volume_ratio | No | ||
rsi_range | No | any |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"min_price_change": {
"default": 2,
"title": "Min Price Change",
"type": "number"
},
"min_volume_ratio": {
"default": 2,
"title": "Min Volume Ratio",
"type": "number"
},
"rsi_range": {
"default": "any",
"title": "Rsi Range",
"type": "string"
}
},
"type": "object"
}