Ta Analyzer
by @raphael2025
Multi-timeframe technical analysis skill using CCXT. Calculates 20+ indicators including RSI, MACD, Bollinger Bands, Ichimoku, Stochastic, Williams %R, ADX,...
clawhub install ta-analyzerπ About This Skill
name: ta-analyzer description: Multi-timeframe technical analysis skill using CCXT. Calculates 20+ indicators including RSI, MACD, Bollinger Bands, Ichimoku, Stochastic, Williams %R, ADX, MFI, CCI, Fibonacci, Pivot Points, Support/Resistance, and detects 10+ chart patterns. Use when user asks for technical analysis, chart analysis, indicator values, trading signals, or price predictions.
TA Analyzer - Technical Analysis Skill
A comprehensive technical analysis skill that fetches real-time market data and calculates 20+ technical indicators.
Features
Price Data
Technical Indicators
#### Trend Indicators
#### Momentum Indicators
#### Volatility Indicators
#### Volume Indicators
#### Support/Resistance
Chart Patterns
#### Single Candle Patterns
#### Multi-Candle Patterns
Fibonacci & Pivot Points
Usage
const { analyze } = require('./index.js');// Analyze BTC on all timeframes
const result = await analyze('BTC/USDT');
// Analyze specific timeframe
const { analyzeTimeframe } = require('./index.js');
const result = await analyzeTimeframe('BTC/USDT', '1h', 100);
Output
The skill returns comprehensive analysis including:
Use Cases
Author: Lucifer (θ·―θ₯Ώζ³) Created: 2026-03-05 Version: 1.0.0
β‘ When to Use
π‘ Examples
const { analyze } = require('./index.js');// Analyze BTC on all timeframes
const result = await analyze('BTC/USDT');
// Analyze specific timeframe
const { analyzeTimeframe } = require('./index.js');
const result = await analyzeTimeframe('BTC/USDT', '1h', 100);