technical-analysis
Installation
SKILL.md
Technical Analysis
Read the chart systematically — don't cherry-pick indicators that confirm a bias.
Prerequisites
No hard dependencies. Works best with Groww MCP or yfinance for live data, but can analyze any stock if you provide prices manually.
Data Collection
When data tools are available, fetch in this order:
- Resolve symbol:
search_stock_and_others_symbolon Groww - Live quote:
get_quotes_and_depthfor current price, volume, day range - Indicators:
get_historical_technical_indicatorsfor SMA, EMA, RSI, MACD, Bollinger, ADX - Candles:
fetch_historical_candle_datawithinterval=1dfor at least 200 days - Long history (if needed):
yf.download("SYMBOL.NS", period="2y")via yfinance
Step 1: Trend Identification
Related skills