strategy-review

strategy-review is a skill for Claude Code from Miha21222/tradingview-mcp. It costs 83 tokens per session (854 once invoked), scanned A, original, MIT.

A checklist-based review of a trading strategy, covering what and when to trade, the market context, entry and stop rules, risk and position management, and feedback.

In plain words
What is it for?
Use it to audit a new setup, a written strategy, or a backtested system and record which parts are complete, partial, or missing.
Why use it?
It exposes missing rules and weak spots before a strategy is used or tested. TDD is not involved here; the review uses a fixed 27-item checklist.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the tradingview-mcp plugin — 10 skills, 1 MCP server shipped together

Good fit Use it to audit a new setup, a written strategy, or a backtested system and record which parts are complete, partial, or missing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/miha21222/tradingview-mcp/strategy-review
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 Miha21222/tradingview-mcp --skill strategy-review
Clone the repo
git clone --depth 1 https://github.com/Miha21222/tradingview-mcp

Made for: Claude Code.

Or install tradingview-mcp, the plugin that ships this one along with the rest of its 10 skills, 1 MCP server.

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 strategy-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/miha21222/tradingview-mcp/strategy-review/github.svg)](https://agentmods.dev/skills/miha21222/tradingview-mcp/strategy-review)
Your own site
<a href="https://agentmods.dev/skills/miha21222/tradingview-mcp/strategy-review"><img src="https://agentmods.dev/badge/skills/miha21222/tradingview-mcp/strategy-review/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 strategy-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/miha21222/tradingview-mcp/strategy-review"><img src="https://agentmods.dev/badge/skills/miha21222/tradingview-mcp/strategy-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 854 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.00083 $0.00854
Opus 5 $0.00042 $0.00427
Sonnet 5 $0.00017 $0.00171
Haiku 4.5 $0.00008 $0.00085

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

Security

Grade A, and why

strategy-review 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 10d 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.

skills/strategy-review/SKILL.md · 61 lines

How it starts

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

Strategy review — the 5-block audit

Audit a strategy against the owner's framework (vault note 02 - Каркас 5 блоков и чек-лист). This is the owner's checklist, not a generic one — do not substitute a textbook framework. The governing rule:

An empty field is not "I'll fill it later" — it is a found gap.

The 5 blocks

# Block The question it answers
1 Периметр (perimeter) WHAT do I trade and WHEN must I not trade?
2 Контекст (context) WHERE are we going, decided before the session, and on what basis?
3 Модель входа (entry model) HOW exactly do I enter and where is the stop?
4 Риск и ведение позиции (risk & management) HOW MUCH is on the line and how does the trade end?
5 Обратная связь (feedback) DOES it work, and how is the system allowed to change?

Block 5 is the only one that separates a system from a set of notes.

Audit method

  1. Walk the 27-item checklist in references/27-item-checklist.md.
  2. Score each: Да = 1, Частично = 0.5. Total out of 27 (=COUNTIF(...,"Да") + 0.5*COUNTIF(...,"Частично") — keep the formula cell out of the range to avoid circular-reference errors).
  3. For every item scored below 1, name the concrete gap and a fix.
  4. Check the 7 systemic gaps (references/27-item-checklist.md §Gaps) — the most common failures across the owner's collection.

Required-fields quick check (per block)

  • Периметр: closed instrument list · sessions/OTT windows in clock hours · allowed weekdays · news blackout · account/base volume. Done when something is fully banned at a specific time.
  • Контекст: LT/IT/ST ladder, one job per level · named context element (liquidity sweep / BOS / period open) · target set before entry · validation condition · invalidation condition (what kills the idea — missing here is the #2 gap).
  • Вход: 2–3 named setups max · ordered trigger sequence · confirmation checklist · order type · exact SL rule · minimum RR. Done when a stranger can find the same entry.
  • Риск: risk per trade % · risk per day/week % · max trades/day · trading-stop trigger · BE rule · partial-close rule · target/exit rule · add-on rule.
  • Обратная связь: trade journal · per-setup WR • avg RR • sample size · backtest with own stats · pre-trade routine · error review · review cadence · rule-change protocol. Done when a setup under ~30 trades is not traded at real risk.

Read the full file on GitHub · 61 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. 10d ago First seen · 61 lines · 83 tokens per session scan A 0cc42c7bdc74

Subscribe to this mod's changes

strategy-review is a skill published in the GitHub repository Miha21222/tradingview-mcp (0 stars, last pushed 15d ago), licensed MIT. It adds 83 tokens to every session and 854 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-08-31.

Related

Other skills, from other repositories

sector-rotation

An analysis framework for comparing industries in the Chinese A-share stock market, using business conditions, price momentum, valuation, and money flows. It produces rankings and higher- or lower-allocation suggestions.

HKUDS/Vibe-Trading · 39 tokens

strategy-pivot-designer

Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.

tradermonty/claude-trading-skills · 28 tokens

twitter-reader

Read Twitter/X for financial research using opencli (read-only). Use this skill whenever the user wants to read their Twitter feed, search for financial tweets, view bookmarks, look up user profiles, or gather market sentiment from Twitter/X. Triggers include: "check my feed", "search Twitter for", "show my…

himself65/finance-skills · 161 tokens

chenhao-limit-up

A framework for judging Chinese A-share stocks that have reached the daily price-rise limit, using market mood, sector leadership, and trading momentum.

questflowai/investorskills · 44 tokens

trading-risk-gate

Unified pre-trade safety gate: Ruin check (Law #1), ergodicity audit, and win-rate dominance validation. Absorbs: ergodicity-check, law-of-ruin, win-rate-dominance.

winstonkoh87/Athena-Public · 53 tokens

furusato

A Japanese hometown-tax donation manager for furusato nozei, a system where donations to municipalities can qualify for an income-tax or local-tax deduction. It reads donation receipts, stores donation records, and calculates deduction limits.

kazukinagata/shinkoku · 102 tokens