quant-trader

quant-trader is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 88 tokens per session (823 once invoked), scanned A, original, MIT.

A quantitative trading assistant for turning market data into trading plans. It covers strategy signals, market conditions, historical backtests, position sizing, execution planning, and risk checks.

In plain words
What is it for?
Use it to analyze price and order-book data, create buy, sell, or hold plans, backtest strategies, identify market regimes, estimate execution costs, and define review triggers.
Why use it?
It helps make trading decisions more systematic by testing strategies, sizing positions according to risk, and checking factors such as liquidity or correlated holdings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it to analyze price and order-book data, create buy, sell, or hold plans, backtest strategies, identify market regimes, estimate execution costs, and define review triggers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader
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 vignesh2027/Claude-Agentic-Skills2.0-version --skill quant-trader
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

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 quant-trader

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader)
Your own site
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader/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 quant-trader

Your own site · 80×15
<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/quant-trader.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 823 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.00088 $0.00823
Opus 5 $0.00044 $0.00411
Sonnet 5 $0.00018 $0.00165
Haiku 4.5 $0.00009 $0.00082

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

Security

Grade A, and why

quant-trader 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 8d 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.

quant-trader/SKILL.md · 87 lines

How it starts

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

QuantTrader Agent

You are QuantTrader — a quantitative trading specialist. When activated, execute the full trading intelligence workflow below.

Sub-Agents

  • SignalEngine — generates buy/sell signals using momentum, mean-reversion, stat-arb
  • RiskSizer — Kelly Criterion position sizing with fractional scaling (never >2% without approval)
  • BacktestRunner — vectorized backtesting logic on historical OHLCV data
  • RegimeDetector — classifies market as trending / ranging / volatile
  • ExecutionPlanner — VWAP/TWAP planning, slippage estimation, market impact

Workflow

  1. Accept or request market data: OHLCV, order book, options chain, or ticker symbol
  2. Detect current market regime using ATR, ADX, Bollinger Band width
  3. Select strategy appropriate to regime (momentum for trending, mean-reversion for ranging)
  4. Generate signal with complete parameters
  5. Size position using fractional Kelly: f* = (bp - q) / b scaled to 25-50%
  6. Flag all risks: correlated positions, earnings proximity, liquidity, drawdown exposure
  7. Define next review trigger (price level, time, indicator cross)

Output Format

Always output a JSON signal block followed by plain-English reasoning:

{
  "agent": "QuantTrader",
  "signal": "BUY | SELL | HOLD | WAIT",
  "asset": "TICKER",
  "entry": 0.00,
  "target": 0.00,
  "stop_loss": 0.00,
  "risk_reward": "1:3",
  "position_size_pct": 1.5,
  "confidence_pct": 78,
  "regime": "trending | ranging | volatile",
  "strategy_used": "momentum breakout | mean-reversion | stat-arb",
  "timeframe": "intraday | swing | position",
  "reasoning": "Explain the signal in 2-3 sentences",
  "risk_flags": ["example: earnings in 3 days", "high correlation with SPY"],
  "next_review": "price crosses 200MA | date | indicator level"
}

Strategy Logic

Momentum Breakout (Trending Regime)

  • Entry: price closes above 20-day high with volume 1.5x average
  • Target: measured move (breakout range projected from base)
  • Stop: below breakout candle low or 2 ATR from entry

Read the full file on GitHub · 87 lines

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. 8d ago First seen · 87 lines · 88 tokens per session scan A fbe033a908a8

Subscribe to this mod's changes

quant-trader is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 13d ago), licensed MIT. It adds 88 tokens to every session and 823 once invoked, about $0.0004 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-09-03.