nse-trading-toolkit

nse-trading-toolkit is a skill for Claude Code, Codex from Bhala-Srinivash/nse-trading-skills. It costs 165 tokens per session (1,262 once invoked), scanned A, original, MIT.

A framework for analysing Indian NSE and BSE shares through the Groww broker. It coordinates methods for chart analysis, position sizing, stop-losses, risk and reward, multiple time periods, RSI divergence, and Fibonacci levels.

In plain words
What is it for?
Use it to analyse a share, plan a trade, calculate position size, set or trail a stop-loss, compare time periods, and evaluate technical signals.
Why use it?
It organizes several trading checks into one process instead of requiring separate analysis each time. With connected market data it can use current prices; without it, you provide the prices.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to analyse a share, plan a trade, calculate position size, set or trail a stop-loss, compare time periods, and evaluate technical signals.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Bhala-Srinivash/nse-trading-skills --skill nse-trading-toolkit
Clone the repo
git clone --depth 1 https://github.com/Bhala-Srinivash/nse-trading-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nse-trading-toolkit

README.md
[![agentmods](https://agentmods.dev/badge/skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit/github.svg)](https://agentmods.dev/skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit)
Your own site
<a href="https://agentmods.dev/skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit"><img src="https://agentmods.dev/badge/skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nse-trading-toolkit

Your own site · 80×15
<a href="https://agentmods.dev/skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit"><img src="https://agentmods.dev/badge/skills/bhala-srinivash/nse-trading-skills/nse-trading-toolkit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 165 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,262 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00165 $0.01262
Opus 5 $0.00082 $0.00631
Sonnet 5 $0.00033 $0.00252
Haiku 4.5 $0.00016 $0.00126

Measured 12d ago against content hash 6fa0b09b7bdc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

nse-trading-toolkit scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

nse-trading-toolkit/SKILL.md · 118 lines

How it starts

The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.

NSE Trading Toolkit — Orchestrator

This is the master workflow that coordinates 8 specialized trading framework skills for Indian NSE/BSE equities.

Prerequisites

All skills work standalone with zero dependencies — they're prompt-based frameworks that Claude applies during analysis. Connecting data sources makes them more powerful:

Data Source Required? What It Adds Setup
Groww MCP Optional Live quotes, portfolio, technical indicators, candle data, order placement Add to .mcp.json (see README)
yfinance Optional Historical OHLCV (>6 months), backtesting pip install yfinance
TradingView MCP Optional Crypto screening, volume scanners See tradingview-mcp

Without any data source: You provide prices manually, Claude applies the frameworks. With Groww MCP: Claude pulls live data automatically. Use search_stock_and_others_symbol first to resolve the trading symbol.

Groww MCP Tool Reference

Tool Use For
search_stock_and_others_symbol Find correct trading symbol
get_quotes_and_depth Live price, volume, bid/ask depth
get_historical_technical_indicators RSI, MACD, SMA, EMA, Bollinger, ADX, ATR
fetch_historical_candle_data OHLCV candles (1m to 1w intervals)
get_equity_portfolio_holdings Your current holdings and P&L
get_ltp Quick last traded price

yfinance Quick Reference

import yfinance as yf
data = yf.download("RELIANCE.NS", period="2y", interval="1d")  # NSE: .NS, BSE: .BO

Master Workflow

Follow this sequence for a full analysis. Skip steps not relevant to the user's question.

1. CONTEXT    → What does the user hold? What's their goal?
2. DATA       → Pull live quotes + historical candles + indicators
3. STRUCTURE  → Multi-timeframe analysis (→ use multi-timeframe-analysis skill)
4. TECHNICALS → Chart reading, indicators (→ use technical-analysis skill)
                 RSI divergences (→ use rsi-divergence skill)
                 Fibonacci levels (→ use fibonacci-trading skill)
5. DECISION   → Buy / Sell / Hold with specific triggers
6. SIZING     → How many shares, at what risk (→ use position-sizing skill)
7. STOPS      → Initial stop-loss (→ use stop-loss-strategies skill)
                 Trailing plan (→ use trailing-stops skill)
8. TARGETS    → R:R ratio check (→ use risk-reward-ratio skill)
                 Fibonacci extensions (→ use fibonacci-trading skill)
9. PLAN       → Concrete action plan with prices and triggers

Read the full file on GitHub · 118 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 118 lines · 165 tokens per session scan A 6fa0b09b7bdc

Subscribe to this mod's changes

nse-trading-toolkit is a skill published in the GitHub repository Bhala-Srinivash/nse-trading-skills (38 stars, last pushed 6mo ago), licensed MIT. It adds 165 tokens to every session and 1,262 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ib-pmcc-advisor

Analyze PMCC (Poor Man's Covered Call / diagonal spread) positions from IB portfolio. For each diagonal spread, reports short leg risk (delta, IV, assignment probability), daily P&L projections, top-3 roll candidates, and a side-by-side comparison table. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 71 tokens

scanner-pmcc

Scan stocks for Poor Man's Covered Call (PMCC) suitability. Analyzes LEAPS and short call options for delta, liquidity, spread, IV, yield, trend direction, and earnings proximity. Use when user asks about PMCC candidates, diagonal spreads, or LEAPS strategies.

staskh/trading_skills · 63 tokens

ib-stop-loss

Downside stop-loss management for PMCC, naked LEAPS, and stock positions in IB. Computes stop prices, detects alerts, and places conditional combo orders. Dry-run by default. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 50 tokens

ib-trailing-stop

Server-side trailing stop management for stocks and naked LEAPS in IB. Places native TRAIL orders that auto-ratchet the stop as price climbs. Dry-run by default. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 49 tokens

ib-collar

Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 30 tokens

ib-find-short-roll

Find roll options for existing short positions OR find best covered call/put to open against long stock. Use when user asks about rolling shorts, finding roll candidates, writing covered calls, or managing option positions. Requires TWS or IB Gateway running locally.

staskh/trading_skills · 55 tokens