coin_analysis
Analyze cryptocurrency performance using technical indicators and metrics for specific coins, exchanges, and timeframes to support trading decisions.
Instructions
Get detailed analysis for a specific coin on specified exchange and timeframe.
Args:
symbol: Coin symbol (e.g., "ACEUSDT", "BTCUSDT")
exchange: Exchange name (BINANCE, KUCOIN, etc.)
timeframe: Time interval (5m, 15m, 1h, 4h, 1D, 1W, 1M)
Returns:
Detailed coin analysis with all indicators and metrics
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"
}