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 BaggaT236/AI-Trading-Skills --skill parabolic-short-trade-plannergit clone --depth 1 https://github.com/BaggaT236/AI-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/baggat236/ai-trading-skills/parabolic-short-trade-planner)<a href="https://agentmods.dev/skills/baggat236/ai-trading-skills/parabolic-short-trade-planner"><img src="https://agentmods.dev/badge/skills/baggat236/ai-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/baggat236/ai-trading-skills/parabolic-short-trade-planner"><img src="https://agentmods.dev/badge/skills/baggat236/ai-trading-skills/parabolic-short-trade-planner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- 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.02058 |
| Opus 5 | $0.00061 | $0.01029 |
| Sonnet 5 | $0.00024 | $0.00412 |
| Haiku 4.5 | $0.00012 | $0.00206 |
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 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.
How it starts
The opening of the file, as written. The whole thing — 172 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
- scripts/_fmp_compat.py 4.9 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.7 KB runs code
- scripts/adapters/fixture_market_data_adapter.py 2.5 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 21 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.8 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 22 KB runs code
- scripts/size_recipe_builder.py 3.3 KB runs code
- scripts/ssr_state_tracker.py 3.7 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
- scripts/tests/fixtures/intraday_bars/vwap_invalidated_after_trigger.json 892 B
- scripts/tests/fixtures/phase2_plan_smoke.json 2.2 KB
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.
- 12d ago First seen · 172 lines · 122 tokens per session scan A 76c739ae7924
parabolic-short-trade-planner is a skill published in the GitHub repository BaggaT236/AI-Trading-Skills (121 stars, last pushed 9d ago), licensed MIT. It adds 122 tokens to every session and 2,058 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
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.
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.
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.
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.
stock_analyzer
A stock and market analysis skill that returns structured information about trends, prices, news, risks, catalysts, and possible trading plans.
ib-collar
Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.