Claude-trading-skills trade-hypothesis-ideator
install
source · Clone the upstream repo
git clone https://github.com/tradermonty/claude-trading-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/tradermonty/claude-trading-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/trade-hypothesis-ideator" ~/.claude/skills/tradermonty-claude-trading-skills-trade-hypothesis-ideator && rm -rf "$T"
manifest:
skills/trade-hypothesis-ideator/SKILL.mdsource content
Trade Hypothesis Ideator
Generate 1-5 structured hypothesis cards from a normalized input bundle, critique and rank them, then optionally export
pursue cards into strategy.yaml + metadata.json artifacts.
Workflow
- Receive input JSON bundle.
- Run pass 1 normalization + evidence extraction.
- Generate hypotheses with prompts:
prompts/system_prompt.md
(injectprompts/developer_prompt_template.md
){{evidence_summary}}
- Critique hypotheses with
.prompts/critique_prompt_template.md - Run pass 2 ranking + output formatting + guardrails.
- Optionally export
hypotheses via Step H strategy exporter.pursue
Scripts
- Pass 1 (evidence summary):
python3 skills/trade-hypothesis-ideator/scripts/run_hypothesis_ideator.py \ --input skills/trade-hypothesis-ideator/examples/example_input.json \ --output-dir reports/
- Pass 2 (rank + output + optional export):
python3 skills/trade-hypothesis-ideator/scripts/run_hypothesis_ideator.py \ --input skills/trade-hypothesis-ideator/examples/example_input.json \ --hypotheses reports/raw_hypotheses.json \ --output-dir reports/ \ --export-strategies
References
references/hypothesis_types.mdreferences/evidence_quality_guide.md