stop-loss-strategies
Installation
SKILL.md
Stop-Loss Strategies
A stop-loss is not optional. Every position needs one before entry. The purpose is to cap your maximum loss — not to predict where price will go.
Prerequisites
No dependencies required. Provide entry price and key levels manually. Enhanced with Groww MCP (candles, ATR, MAs) or yfinance (pip install yfinance).
Data Needed
- Entry price: Known or planned
- Recent candles:
fetch_historical_candle_data(daily, last 60 days) or user-provided levels - ATR(14):
get_historical_technical_indicatorsfrom Groww, or calculate manually - Key S/R levels: From technical-analysis skill or swing highs/lows
- Moving averages: SMA20, SMA50, SMA200
Stop Type Selection
Related skills