Install
openclaw skills install @clawdiri-ai/einstein-research-edge-dvGenerate 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.
openclaw skills install @clawdiri-ai/einstein-research-edge-dvThis 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.
trade-strategy-pipeline.The skill prompts the user for the core components of their idea:
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:
ER-YYYY-NNNThe 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:
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:
strategy.yaml: The machine-readable definition of the strategy.
version: edge-finder-candidate/v1
name: 52-Week High Momentum
hypothesis: Stocks hitting a 52-week high with high volume have momentum.
entry:
- "price > high_52w"
- "volume > 2 * avg_volume_50d"
exit:
- "hold_days == 5"
- "pct_change >= 0.10"
- "pct_change <= -0.05"
universe: "sp500"
metadata.json: Additional context for the pipeline runner.
{
"ticketId": "ER-2026-015",
"rationale": "Breakout momentum, high volume confirms institutional interest.",
"priority": 85,
"dataRequirements": ["daily_ohlcv", "high_52w", "avg_volume_50d"]
}
The generated directory is now ready to be processed by the einstein-research-backtest-engine skill, which will execute the backtest based on the strategy.yaml spec.
strategy.yaml format allows the backtesting process to be fully automated.This skill is the gateway to the entire quantitative research pipeline, turning qualitative ideas into testable, machine-readable artifacts.