Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
bhala-srinivash avatar

Stop Loss Strategies

  • 87 installs
  • 32 repo stars
  • Updated March 5, 2026
  • bhala-srinivash/nse-trading-skills

stop-loss-strategies is a finance skill for solo builders and traders automating or assisting NSE/BSE equity workflows who must define loss limits before opening a position.

About

stop-loss-strategies is a finance skill for solo builders and traders automating or assisting NSE/BSE equity workflows who must define loss limits before opening a position. It states plainly that a stop is non-optional and exists to cap maximum loss rather than forecast direction. The skill compares structure-based stops (swing highs and lows), ATR-based stops for volatile names, support and resistance levels, and moving-average anchors, with a table for when each method fits. Prerequisites are light: entry price and key levels can be manual, while Groww MCP historical candles and technical indicators or yfinance can supply ATR and moving averages. Triggers match natural language asks about where to set a stop, protecting a trade, or risk management for a symbol. Canonical Validate scope keeps the skill on the shelf where trade plans are checked; the same rules apply again in Operate when adjusting or re-validating open risk.

  • Treats stop-loss as required before every entry, not a price prediction
  • Stop type matrix: structure-based, ATR-based, S/R-based, and moving-average-based with selection guidance
  • Data checklist: entry price, ~60 days daily candles, ATR(14), swing S/R, SMA20/50/200
  • Optional Groww MCP or yfinance for candles and indicators when manual levels are not provided
  • Buffer rules and hard limits referenced in SKILL.md for Indian equity context

Stop Loss Strategies by the numbers

  • 87 all-time installs (skills.sh)
  • Ranked #534 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/bhala-srinivash/nse-trading-skills --skill stop-loss-strategies

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs87
repo stars32
Security audit3 / 3 scanners passed
Last updatedMarch 5, 2026
Repositorybhala-srinivash/nse-trading-skills

How do I place mandatory, rule-based initial stop-losses on NSE/BSE equity trades using structure, ATR, support/resistance, and moving-average methods with buffer limits.?

Place mandatory, rule-based initial stop-losses on NSE/BSE equity trades using structure, ATR, support/resistance, and moving-average methods with buffer limits.

Who is it for?

Best when you're working on finance & trading and need structured help with stop loss strategies.

Skip if: Teams with no finance & trading needs, or anyone wanting a generic chat assistant without this specific workflow.

When should I use this skill?

When you need to place mandatory, rule-based initial stop-losses on NSE/BSE equity trades using structure, ATR, support/resistance, and moving-average methods with buffer limits., or when stop-loss-strategies is a financ

What you get

Structured output aligned to stop-loss-strategies: Treats stop-loss as required before every entry, not a price prediction, Stop type matrix: structure-based, ATR-based, S/R-based, and moving-average-based with selection

Files

SKILL.mdMarkdownGitHub ↗

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

1. Entry price: Known or planned 2. Recent candles: fetch_historical_candle_data (daily, last 60 days) or user-provided levels 3. ATR(14): get_historical_technical_indicators from Groww, or calculate manually 4. Key S/R levels: From technical-analysis skill or swing highs/lows 5. Moving averages: SMA20, SMA50, SMA200

Stop Type Selection

MethodBest ForHow to Calculate
Structure-basedSwing trades, clear chart patternsBelow recent swing low (long) or above swing high (short)
ATR-basedVolatile stocks, no clear structureEntry - ATR(14) × 1.5 to 2.0
Support/ResistanceRange-bound markets, clear levelsBelow key support level + buffer
Moving AverageTrend-following tradesBelow SMA20 (aggressive) or SMA50 (conservative)

Structure-Based (Preferred)

Find the most recent swing low (for longs) that, if broken, would invalidate your trade thesis.

Stop = Recent swing low - buffer
Buffer = 0.5% for large-caps, 1% for mid/small-caps

ATR-Based

Adapts to the stock's natural volatility:

Stop (long) = Entry - ATR(14) × multiplier
Stop (short) = Entry + ATR(14) × multiplier

Multiplier: 1.5 (tight) to 2.0 (standard) to 2.5 (loose)

Support/Resistance-Based

Place stop just below a confirmed support level:

Stop = Support level × (1 - buffer%)
Buffer: 0.5% large-cap, 1.0% mid/small-cap

Only use levels with at least 2 historical touches.

Moving Average-Based

For trend-following positions:

Aggressive: Stop below SMA20 (for short-term trends)
Moderate: Stop below SMA50 (for medium-term trends)
Conservative: Stop below SMA200 (for long-term holds)

Best when MA is clearly sloping in your direction.

Buffer Rules

  • Round stop to nearest Rs.5 or Rs.10 for cleaner levels
  • Use closing price as trigger, not intraday wicks (unless day trading)
  • Add extra buffer if the stock has a history of stop-hunting wicks
  • For illiquid stocks (avg volume < 50K/day), use wider buffers (1.5-2%)

Hard Rules

These are non-negotiable:

1. Max loss per trade: 2% of capital (1% if using leverage) 2. Never move stop further away — only tighten or leave unchanged 3. If stop hits: exit immediately at next open. No "let me wait for close" 4. Pre-set the stop: Decide before entering. Don't adjust based on emotions after entry 5. No mental stops: Use actual stop-loss orders on Groww if possible, or set hard price alerts

Stop Validation

Before finalizing, check:

  • [ ] Is the stop beyond normal noise? (At least 1× ATR away from entry)
  • [ ] Does the position size at this stop keep risk within limits?
  • [ ] Is the R:R ratio still acceptable? (→ check with risk-reward-ratio skill)
  • [ ] Is the stop below a meaningful technical level, not just a round number?

Related skills

FAQ

What does stop-loss-strategies do?

stop-loss-strategies is a finance skill for developers and traders automating or assisting NSE/BSE equity workflows who must define loss limits before opening a position.

When should I use stop-loss-strategies?

When you need to place mandatory, rule-based initial stop-losses on NSE/BSE equity trades using structure, ATR, support/resistance, and moving-average methods with buffer limits., or when stop-loss-strategies is a finance skill for developers and traders automating or assistin

What are the main capabilities?

Treats stop-loss as required before every entry, not a price prediction; Stop type matrix: structure-based, ATR-based, S/R-based, and moving-average-based with selection guidance; Data checklist: entry price, ~60 days daily candles, ATR(14), swing S/R, SMA20/50/200.

Is Stop Loss Strategies safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.