volume_confirmation_analysis
Analyze volume confirmation patterns for cryptocurrency trades to validate price movements and identify potential entry/exit signals using specified timeframes and exchanges.
Instructions
Detailed volume confirmation analysis for a specific coin.
Args:
symbol: Coin symbol (e.g., BTCUSDT)
exchange: Exchange name
timeframe: Time frame for analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exchange | No | KUCOIN | |
symbol | Yes | ||
timeframe | No | 15m |
Input Schema (JSON Schema)
{
"properties": {
"exchange": {
"default": "KUCOIN",
"title": "Exchange",
"type": "string"
},
"symbol": {
"title": "Symbol",
"type": "string"
},
"timeframe": {
"default": "15m",
"title": "Timeframe",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}