einstein-research-edge
Generate and prioritize US equity long-side edge research tickets from EOD observations, then export pipeline-ready candidate specs for trade-strategy-pipeline Phase I. Use when users ask to turn hypotheses/anomalies into reproducible research tickets, convert validated ideas into `strategy.yaml` + `metadata.json`, or preflight-check interface compatibility (`edge-finder-candidate/v1`) before running pipeline backtests.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/clawdiri-ai/einstein-research-edge-dvEdge Research Ticket Generator
This skill formalizes the process of turning a trading hypothesis or anomaly into a structured, reproducible research ticket. It's the first step in the quantitative research pipeline, ensuring that ideas are well-defined and testable before any backtesting code is written.
When to Use This Skill
- User has a trading idea or hypothesis (e.g., "I think stocks that do X tend to go up").
- User observes a market anomaly and wants to investigate it systematically.
- User wants to create a new candidate for the
trade-strategy-pipeline. - Triggers: "research ticket," "new strategy idea," "test this hypothesis," "is this an edge?".
Workflow: From Idea to Pipeline-Ready Spec
Step 1: Idea Ingestion
The skill prompts the user for the core components of their idea:
- Hypothesis: A clear, one-sentence statement of the proposed edge.
- Entry Signal: The specific conditions that trigger a buy.
- Exit Signal: The conditions that trigger a sell (e.g., target profit, stop-loss, time-based).
- Universe: The group of stocks to test this on (e.g., S&P 500, Nasdaq 100).
- Rationale: Why should this edge exist? (Behavioral, structural, etc.).
Step 2: Ticket Generation
The edge-generator CLI tool takes these inputs and creates a structured research ticket in Markdown format.
edge-generator create \
--hypothesis "Stocks hitting a 52-week high with high volume have momentum." \
--entry "Price > 52-week high AND Volume > 2x 50-day avg volume" \
--exit "5-day hold OR 10% profit target OR 5% stop-loss" \
--universe "sp500" \
--rationale "Breakout momentum, high volume confirms institutional interest."
This generates a file like tickets/ER-2026-015_52_week_high_momentum.md.
Ticket Structure:
- ID:
ER-YYYY-NNN - Title: Short description of the idea.
- Hypothesis: As provided.
- Entry/Exit/Universe/Rationale: As provided.
- Data Requirements: Lists the data needed (e.g., daily OHLCV, 52-week high, 50-day avg volume).
- Priority Score: An initial score (0-100) based on uniqueness, rationale strength, and testability.
Step 3: Prioritization
The skill can rank all open tickets in the tickets/ directory to help decide what to research next.
edge-generator prioritize
This updates the priority scores based on factors like:
- Novelty: How similar is this to previously tested (and failed) ideas?
- Data Availability: Can this be tested with our current data sources?
- Computational Cost: Is the backtest likely to be fast or slow?
Step 4: Export to Pipeline Spec
Once a ticket is prioritized and approved for research, this skill exports it to the format required by the trade-strategy-pipeline.
edge-generator export ER-2026-015
This creates a directory pipeline-candidates/ER-2026-015/ containing:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-clawdiri-ai-einstein-research-edge-dv": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
Follow-Through Day (FTD) Detector
Detects Follow-Through Day (FTD) signals for market bottom confirmation using William O'Neil's methodology. Dual-index tracking (S&P 500 + NASDAQ) with state machine for rally attempt, FTD qualification, and post-FTD health monitoring. Use when user asks about market bottom signals, follow-through days, rally attempts, re-entry timing after corrections, or whether it's safe to increase equity exposure. Complementary to market-top-detector (defensive) - this skill is offensive (bottom confirmation).
Gumroad Page Generator
Generates Gumroad product page content from a simple spec.
Analytics Tracking
Track events and user behavior using Segment.
AutoSignals - Autonomous Trading Signal Optimization
Monitors and controls the AutoSignals autonomous research loop.
first-principles
Deep first-principles analysis of any topic, decision, strategy, or assumption. Strips inherited thinking, identifies what is provably true, and rebuilds from ground truth. Use when user asks for first principles analysis, wants to challenge assumptions, says "analyze this from scratch", "break this down", "what's really true here", or triggers with /firstprinciples. Also useful for strategic decisions, investment theses, product strategy, career moves, or any situation where conventional wisdom may be wrong.