New to Claude Skills? Learn how to install them →

tradermonty on GitHub

Stockbee Momentum Burst Screener

Free

Identify short-term momentum burst stock candidates.

Get this skill

Free · Opens the source repo

What Stockbee Momentum Burst Screener does

The Stockbee Momentum Burst Screener is a specialized tool designed for traders looking to identify short-term momentum burst opportunities in US equities. This skill utilizes the Stockbee methodology, which focuses on specific breakout criteria such as 4% and dollar breakouts, range expansion, and volume expansion. By screening stocks based on these parameters, users can generate a list of candidates that exhibit strong potential for short-term trading.

The workflow begins by allowing users to choose their input mode, whether scanning a universe of stocks via the FMP API, specifying a list of symbols, or using offline historical data in JSON format. Once the input is set, the script evaluates stocks based on several trigger families, scoring them on criteria like trigger strength, volume expansion, and risk distance to the trigger-day low. This structured approach helps traders identify setups that are not only viable but also align with their risk management strategies.

After running the screening pass, the output is presented in both JSON and Markdown formats, detailing each candidate's performance metrics, setup scores, and suggested actions. The reports provide insights into the quality of each setup, allowing traders to make informed decisions about which candidates to pursue further. This skill is particularly useful for those who follow the Stockbee approach and are looking for a systematic way to filter potential trades based on defined criteria.

Ultimately, the Stockbee Momentum Burst Screener is a valuable resource for traders who want to enhance their stock screening process, focusing on short-term momentum strategies while ensuring that their selections are backed by rigorous analysis.

When to use it

Use this tool when you need to screen for short-term momentum burst setups or when reviewing daily breakout candidates based on Stockbee methodologies.

When not to use it

This is not suitable for long-term investment strategies or for users looking for automated trading execution.

What you can build with it

Screening for Breakout Stocks

Use the screener to identify stocks that have recently broken out by 4% or more, which could indicate strong momentum.

Evaluating Setup Quality

After running the screening, review the setup quality scores to determine which stocks are worth further analysis.

Generating Candidate Lists

Provide a list of symbols or use the FMP universe scan to generate potential candidates for short-term trading.

How to install Stockbee Momentum Burst Screener

View source

1. Install with the skills CLI

npx skills add tradermonty/claude-trading-skills/stockbee-momentum-burst-screener --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 Momentum Burst Screener

Screen US equities for Stockbee-style short-term Momentum Burst candidates. The skill is a candidate-generation and setup-quality workflow, not a signal service or an auto-execution system.

When to Use

  • User asks for Stockbee / Pradeep Bonde style Momentum Burst screening
  • User wants 4% breakout, dollar breakout, or range expansion candidates
  • User asks for short-term 3-5 day swing momentum setups
  • User wants to review whether a daily breakout has A/B/C setup quality
  • User provides a symbol list, universe file, or historical OHLCV JSON for screening
  • User wants candidate outputs to feed into technical-analyst, position-sizer, or trader-memory-core

Prerequisites

  • FMP API key for live universe and historical OHLCV screening:
    export FMP_API_KEY=your_api_key_here
    
  • Optional no-API path: provide --prices-json containing daily OHLCV bars by symbol.
  • Run only after the market-regime workflow allows new swing risk, or mark output as manual-review-only.

Workflow

Step 1: Choose Input Mode

Use one of three modes:

Mode A: FMP universe scan

python3 skills/stockbee-momentum-burst-screener/scripts/screen_momentum_burst.py \
  --fmp-universe \
  --max-symbols 300 \
  --output-dir reports/

Mode B: Explicit symbols

python3 skills/stockbee-momentum-burst-screener/scripts/screen_momentum_burst.py \
  --symbols NVDA SMCI PLTR TSLA \
  --output-dir reports/

Mode C: Offline OHLCV JSON

python3 skills/stockbee-momentum-burst-screener/scripts/screen_momentum_burst.py \
  --prices-json data/daily_ohlcv.json \
  --output-dir reports/

Step 2: Run the Screening Pass

The script detects these trigger families:

  • 4% Breakout: close / previous_close >= 1.04, volume above previous day, and volume above the liquidity floor
  • Dollar Breakout: close - open >= 0.90, volume above the liquidity floor
  • Range Expansion: current daily range exceeds the prior three daily ranges while the prior day was not already extended

It then scores setup quality using:

  • Trigger strength
  • Volume expansion
  • Prior base / range contraction quality
  • Close location near the high of day
  • Risk distance to the trigger-day low
  • Failure filters such as prior 3-day run-up or recent 4% breakdown
  • Market gate alignment

Step 3: Review Output

Read the generated JSON and Markdown reports. For each candidate, present:

  • Trigger type and all matched trigger tags
  • Day gain, dollar gain, volume ratio, and close-location percentage
  • Prior base length and base width
  • Entry reference, stop reference, and risk percentage to stop
  • Setup score, rating, state, and reject reasons
  • Suggested downstream action

Step 4: Send Survivors to Trade Planning

Use the output conservatively:

  • A / A- candidates: send to technical-analyst for manual chart validation, then position-sizer
  • B candidates: watchlist or smaller-risk review only
  • Watch-only candidates: keep in model book; do not plan a trade unless chart review upgrades the setup
  • Rejected candidates: retain for post-analysis, not for execution

Output

  • stockbee_momentum_burst_YYYY-MM-DD_HHMMSS.json - Structured candidate list, metadata, thresholds, score components, and rejects
  • stockbee_momentum_burst_YYYY-MM-DD_HHMMSS.md - Human-readable report grouped by rating/state

Resources

  • references/momentum_burst_methodology.md - Stockbee-style method summary and implementation boundaries
  • references/scoring_system.md - Component weights, state thresholds, and failure filters
  • references/entry_exit_rules.md - Entry reference, stop, sizing handoff, and exit template

Frequently asked questions about Stockbee Momentum Burst Screener

Similar skills