rsi-divergence
Installation
SKILL.md
RSI Divergence
Divergences signal that momentum is fading — price is moving one way but the engine (RSI) is losing steam. They're early warnings, not guarantees.
Prerequisites
No dependencies required. Describe price and RSI patterns verbally and Claude identifies divergences. Enhanced with Groww MCP (RSI values, candles) or yfinance (pip install yfinance).
Data Needed
- Daily candles:
fetch_historical_candle_data(last 90-120 days) or user-provided - RSI(14) values:
get_historical_technical_indicatorsfrom Groww - For manual calculation via yfinance if needed:
import yfinance as yf data = yf.download("SYMBOL.NS", period="6mo") # Calculate RSI from close prices
Related skills