Claude Trading Skills is a collection of Claude Code workflows for individual investors who want structured market analysis, charting, economic-calendar review, screening, trade planning, journaling, and risk management. It is designed for people using long-term investing, ETFs, dividend stocks, and disciplined swing trading, and the catalogue entries package these workflows as skills, agents, commands, settings, and instructions.
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.
npx skills add tradermonty/claude-trading-skills --skill parabolic-short-trade-plannergit clone --depth 1 https://github.com/tradermonty/claude-trading-skillsWrote 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.
[](https://agentmods.dev/skills/tradermonty/claude-trading-skills/parabolic-short-trade-planner)<a href="https://agentmods.dev/skills/tradermonty/claude-trading-skills/parabolic-short-trade-planner"><img src="https://agentmods.dev/badge/skills/tradermonty/claude-trading-skills/parabolic-short-trade-planner/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.
<a href="https://agentmods.dev/skills/tradermonty/claude-trading-skills/parabolic-short-trade-planner"><img src="https://agentmods.dev/badge/skills/tradermonty/claude-trading-skills/parabolic-short-trade-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- Socket pass
- Snyk warn
- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00122 | $0.02267 |
| Opus 5 | $0.00061 | $0.01133 |
| Sonnet 5 | $0.00024 | $0.00453 |
| Haiku 4.5 | $0.00012 | $0.00227 |
Grade A, and why
parabolic-short-trade-planner 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 13d 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.
How it starts
The opening of the file, as written. The whole thing — 188 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Overview
Generate Qullamaggie-style Parabolic Short watchlists and conditional pre-market plans for US equities. The skill never sends orders. It emits JSON + Markdown that a human reviews against their broker before entry.
Three phases:
- Phase 1 (
screen_parabolic.py): pulls EOD bars + company profile from FMP, applies hard invalidation rules (mode-aware), scores survivors on 5 factors (weights 30/25/20/15/10), and assigns A/B/C/D grades. - Phase 2 (
generate_pre_market_plan.py): takes the Phase 1 JSON, filters by--tradable-min-grade(defaultB), checks Alpaca short inventory (orManualBrokerAdapter), evaluates SEC Rule 201 SSR state from the inherited prior-day close, and renders three trigger plans per candidate. - Phase 3 (
monitor_intraday_trigger.py): reads the Phase 2 plan, fetches 5-min bars (Alpaca live or fixture), walks each plan's FSM forward by one step, persists per-plan state, and writes anintraday_monitorJSON withstate,entry_actual,stop_actual, andshares_actual(when triggered). One-shot — trader runs it every 1–5 min viawatchor cron; replay-deterministic so re-runs are byte-identical.
When to Use
Invoke this skill when the user wants to:
- Build a daily Parabolic Short watchlist from S&P 500 (or a custom CSV).
- Translate a watchlist into pre-market trade plans with explicit borrow / SSR / state-cap gating.
- Audit a candidate's blocking vs advisory manual-confirmation reasons before placing an order at Alpaca.
Do NOT invoke for:
- Long-side momentum screening — use vcp-screener or canslim-screener.
- 1-minute / sub-minute intraday signals — Phase 3 evaluates 5-min bars only.
- Live order routing — this skill is detection-only by design;
Phase 3 emits a
triggeredstate with concrete entry/stop/share count, but the trader fires the order manually.
Workflow
Phase 1 — daily screener
- Confirm
FMP_API_KEYis set (env var or--api-key). - Run with the safer-by-default mode:
python3 skills/parabolic-short-trade-planner/scripts/screen_parabolic.py \ --mode safe_largecap --as-of 2026-04-30 --output-dir reports/ - Inspect
reports/parabolic_short_<date>.md— the watchlist is grouped by grade (A→D). - Promote interesting names to Phase 2.
What ships with it
60 files 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.
- references/broker_capability_matrix.md 2.1 KB
- references/intraday_trigger_playbook.md 4.6 KB
- references/parabolic_short_methodology.md 2.4 KB
- references/short_invalidation_rules.md 2.0 KB
- references/short_risk_management.md 2.6 KB
- references/smoke_test_runbook.md 21 KB
- references/smoke_universe_diverse.csv 53 B
- references/smoke_universe_relaxed.csv 44 B
- requirements.txt 204 B
- scripts/_fmp_compat.py 4.9 KB runs code
- scripts/_market_calendar.py 11 KB runs code
- scripts/adapters/__init__.py 0 B runs code
- scripts/adapters/alpaca_inventory_adapter.py 3.9 KB runs code
- scripts/adapters/alpaca_market_data_adapter.py 6.5 KB runs code
- scripts/adapters/fixture_market_data_adapter.py 3.0 KB runs code
- scripts/adapters/market_data_adapter.py 2.2 KB runs code
- scripts/bar_normalizer.py 3.0 KB runs code
- scripts/broker_short_inventory_adapter.py 2.7 KB runs code
- scripts/calculators/__init__.py 0 B runs code
- scripts/calculators/acceleration_calculator.py 3.2 KB runs code
- scripts/calculators/atr_calculator.py 1.3 KB runs code
- scripts/calculators/liquidity_metrics_calculator.py 1.8 KB runs code
- scripts/calculators/ma_extension_calculator.py 2.5 KB runs code
- scripts/calculators/parabolic_score_calculator.py 3.9 KB runs code
- scripts/calculators/range_expansion_calculator.py 1.7 KB runs code
- scripts/check_live_apis.py 13 KB runs code
- scripts/fmp_client.py 23 KB runs code
- scripts/generate_pre_market_plan.py 12 KB runs code
- scripts/intraday_evaluators/__init__.py 276 B runs code
- scripts/intraday_evaluators/first_red_evaluator.py 3.9 KB runs code
- scripts/intraday_evaluators/orl_evaluator.py 5.3 KB runs code
- scripts/intraday_evaluators/vwap_fail_evaluator.py 6.0 KB runs code
- scripts/intraday_size_resolver.py 2.6 KB runs code
- scripts/intraday_state_machine.py 1.8 KB runs code
- scripts/intraday_state_store.py 2.0 KB runs code
- scripts/invalidation_rules.py 3.0 KB runs code
- scripts/manual_reasons.py 2.3 KB runs code
- scripts/market_clock.py 2.5 KB runs code
- scripts/math_helpers.py 2.8 KB runs code
- scripts/monitor_intraday_trigger.py 10 KB runs code
- scripts/parabolic_report_generator.py 8.0 KB runs code
- scripts/parabolic_scorer.py 3.1 KB runs code
- scripts/plan_builders/__init__.py 0 B runs code
- scripts/plan_builders/first_red_plan_builder.py 916 B runs code
- scripts/plan_builders/orl_plan_builder.py 986 B runs code
- scripts/plan_builders/vwap_fail_plan_builder.py 907 B runs code
- scripts/screen_parabolic.py 24 KB runs code
- scripts/size_recipe_builder.py 3.3 KB runs code
- scripts/ssr_state_tracker.py 3.6 KB runs code
- scripts/state_caps.py 2.4 KB runs code
- scripts/tests/conftest.py 4.6 KB runs code
- scripts/tests/fixtures/dry_run_minimal.json 15 KB
- scripts/tests/fixtures/intraday_bars/first_red_clean.json 610 B
- scripts/tests/fixtures/intraday_bars/first_red_invalidated.json 538 B
- scripts/tests/fixtures/intraday_bars/first_red_same_bar_invalidation_wins.json 614 B
- scripts/tests/fixtures/intraday_bars/no_bars_yet.json 178 B
- scripts/tests/fixtures/intraday_bars/orl_clean_break.json 617 B
- scripts/tests/fixtures/intraday_bars/orl_invalidated.json 750 B
- scripts/tests/fixtures/intraday_bars/orl_low_volume_no_fire.json 536 B
- scripts/tests/fixtures/intraday_bars/vwap_full_fsm.json 959 B
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.
- 13d ago First seen · 188 lines · 122 tokens per session scan A 0ac6931bf889
parabolic-short-trade-planner is a skill published in the GitHub repository tradermonty/claude-trading-skills (2,813 stars, last pushed today), licensed MIT. It adds 122 tokens to every session and 2,267 once invoked, about $0.0006 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.
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.
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…
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.
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.
reading-receipt
An image-reading workflow for extracting structured information from receipts, invoices, and hometown-tax donation certificates. It can first extract text from PDFs and otherwise read their images.
vectorbt
High-performance vectorized backtesting with parameter optimization, portfolio simulation, and rich performance metrics.