New to Claude Skills? Learn how to install them →

tradermonty on GitHub

Stockbee Episodic Pivot Analyzer

Free

Analyze Day 1 Episodic Pivot candidates effectively.

Get this skill

Free · Opens the source repo

What Stockbee Episodic Pivot Analyzer does

The Stockbee Episodic Pivot Analyzer is designed to assist traders and analysts in identifying Day 1 Episodic Pivot (EP) candidates based on various catalysts such as earnings reports, guidance changes, mergers and acquisitions, and other significant events. This skill focuses on evaluating the quality of these catalysts alongside price and volume confirmations, providing a structured approach to candidate analysis. It is particularly useful for users following the Stockbee methodology, which emphasizes actionable trading opportunities derived from significant market events.

To utilize the analyzer, users must prepare input data in specific formats, including catalyst/event JSON or outputs from other trading analysis tools. Once the data is prepared, the skill processes it through a Python script, generating detailed reports that classify candidates into categories such as ACTIONABLE_DAY1, DELAYED_EP_WATCH, and others. This classification helps traders make informed decisions about which candidates to pursue further or monitor based on their trading strategies.

The output includes a comprehensive scoring report that assesses catalyst quality, price movement, and risk factors associated with each candidate. Additionally, the analyzer provides clear handoff rules for how to proceed with each classification, ensuring that users can integrate the findings into their broader trading workflows effectively. This tool is aimed at traders who require a systematic method for evaluating potential trades based on significant market catalysts and their corresponding price actions.

Overall, the Stockbee Episodic Pivot Analyzer is a valuable resource for traders looking to enhance their decision-making process with data-driven insights into Day 1 EP candidates, allowing for a more strategic approach to trading based on real-time market events.

When to use it

Use this skill when you have specific catalysts or events that may impact stock prices and need to analyze their potential for trading.

When not to use it

This skill is not suitable for discovering news or events on its own; it requires pre-gathered catalyst data from other sources.

What you can build with it

Earnings Report Analysis

Use the analyzer to evaluate stocks following earnings reports to identify actionable Day 1 EP candidates.

M&A Event Evaluation

Analyze stocks involved in mergers and acquisitions to assess potential trading opportunities based on catalyst quality.

FDA Approval Monitoring

Monitor stocks that receive FDA approvals and analyze their market reaction to determine viable trading strategies.

How to install Stockbee Episodic Pivot Analyzer

View source

1. Install with the skills CLI

npx skills add tradermonty/claude-trading-skills/stockbee-episodic-pivot-analyzer --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by tradermonty

Stockbee Episodic Pivot Analyzer

Classify Day 1 Episodic Pivot (EP) candidates using both catalyst quality and price/volume confirmation. The skill is a candidate-quality analyzer, not an execution engine.

When to Use

  • The user asks for Pradeep Bonde / Stockbee style EP candidates
  • The user provides earnings, guidance, M&A, FDA, analyst, contract, product, short-squeeze, or theme/news events
  • The user wants to separate ACTIONABLE_DAY1 candidates from DELAYED_EP_WATCH names
  • The user wants to hand strong earnings/guidance EPs into pead-screener
  • The user wants to combine catalyst analysis with stockbee-momentum-burst-screener price/volume output

Prerequisites

  • Python 3.10+
  • Optional: FMP API key for OHLCV/profile enrichment
  • One of:
    • Catalyst/events JSON
    • earnings-trade-analyzer JSON output
    • Catalyst JSON plus stockbee-momentum-burst-screener JSON enrichment
  • This skill does not fetch or discover news by itself. If the catalyst is not supplied, first gather the event/news context using the user's preferred news or research process.

Workflow

Step 1: Prepare Candidate Inputs

Use one or more of these input modes.

Mode A — Catalyst/event JSON:

{
  "events": [
    {
      "symbol": "ABC",
      "event_date": "2026-04-25",
      "catalyst_type": "guidance_raise",
      "headline": "ABC raises FY guidance after record demand",
      "summary": "Management raised revenue and EPS guidance."
    }
  ]
}

Mode B — Earnings pipeline:

Use the JSON produced by earnings-trade-analyzer.

Mode C — Price/volume enrichment:

Pass a stockbee-momentum-burst-screener JSON report to reuse day-gain, volume, close-location, and risk-distance fields.

Step 2: Run the Analyzer

# Catalyst JSON + offline OHLCV
python3 skills/stockbee-episodic-pivot-analyzer/scripts/analyze_ep.py \
  --events-json data/catalysts.json \
  --prices-json data/daily_ohlcv.json \
  --output-dir reports/

# Earnings pipeline input
python3 skills/stockbee-episodic-pivot-analyzer/scripts/analyze_ep.py \
  --earnings-json reports/earnings_trade_analyzer_YYYY-MM-DD_HHMMSS.json \
  --output-dir reports/

# Catalyst JSON + Stockbee momentum enrichment
python3 skills/stockbee-episodic-pivot-analyzer/scripts/analyze_ep.py \
  --events-json data/catalysts.json \
  --momentum-json reports/stockbee_momentum_burst_YYYY-MM-DD_HHMMSS.json \
  --output-dir reports/

Optional FMP enrichment:

export FMP_API_KEY=your_key
python3 skills/stockbee-episodic-pivot-analyzer/scripts/analyze_ep.py \
  --events-json data/catalysts.json \
  --max-api-calls 200 \
  --output-dir reports/

Step 3: Review the Output

For each candidate, present:

  • state: ACTIONABLE_DAY1, DAY1_WATCH, DELAYED_EP_WATCH, CATALYST_WATCH, or REJECT
  • ep_type: EARNINGS_EP, GUIDANCE_EP, FDA_EP, M_AND_A_EP, STORY_EP, etc.
  • Catalyst quality score and reasons
  • Price/range expansion, volume shock, and close-location quality
  • Risk to EP-day low
  • pead_handoff and delayed_ep_watch flags

Step 4: Handoff Rules

  • ACTIONABLE_DAY1: Send to technical-analyst and position-sizer before any trade decision.
  • DAY1_WATCH: Keep on the intraday/next-day watchlist; require chart confirmation.
  • DELAYED_EP_WATCH: Do not chase Day 1; monitor for a controlled pullback or new range.
  • CATALYST_WATCH: Catalyst may be important, but price/volume confirmation is not yet sufficient.
  • REJECT: Do not trade from this candidate source.
  • Earnings/guidance EPs with pead_handoff=true can be sent to pead-screener for weekly red-candle / delayed reaction monitoring.

Output

  • stockbee_episodic_pivot_YYYY-MM-DD_HHMMSS.json — structured EP scoring report
  • stockbee_episodic_pivot_YYYY-MM-DD_HHMMSS.md — human-readable candidate report

Resources

  • references/ep_methodology.md — Stockbee EP interpretation and setup taxonomy
  • references/catalyst_quality.md — catalyst classification and quality scoring
  • references/handoff_rules.md — downstream workflow handoffs and review rules

Frequently asked questions about Stockbee Episodic Pivot Analyzer

Similar skills