OverviewHistoryStatsSecurity
npx skills add ...
Documentation
SKILL.md
npx skills add tradermonty/claude-trading-skills --skill strategy-pivot-designer
Detect backtest iteration stagnation and generate structurally different strategy pivot proposals when parameter tuning reaches a local optimum.
npx skills add tradermonty/claude-trading-skills --skill strategy-pivot-designer
Detect when a strategy's backtest iteration loop has stalled and propose structurally different strategy architectures. This skill acts as the feedback loop for the Edge pipeline (hint-extractor -> concept-synthesizer -> strategy-designer -> candidate-agent), breaking out of local optima by redesigning the strategy's skeleton rather than tweaking parameters.
PyYAMLpivot_drafts/research_only/*.yaml — strategy_draft compatible YAML proposalspivot_drafts/exportable/*.yaml — export-ready drafts + ticket YAML for candidate-agentpivot_report_*.md — human-readable pivot analysispivot_manifest_*.json — metadata for all generated filespivot_diagnosis_*.json — stagnation detection results--append-eval.Append a backtest evaluation to history (creates history if new):
Detect stagnation:
Generate pivot proposals:
skills/strategy-pivot-designer/scripts/detect_stagnation.pyskills/strategy-pivot-designer/scripts/generate_pivots.pyreferences/stagnation_triggers.mdreferences/strategy_archetypes.mdreferences/pivot_techniques.mdreferences/pivot_proposal_schema.mdskills/backtest-expert/scripts/evaluate_backtest.pyskills/edge-strategy-designer/scripts/design_strategy_drafts.pypython3 skills/strategy-pivot-designer/scripts/detect_stagnation.py \
--history reports/iteration_history.json \
--output-dir reports/python3 skills/strategy-pivot-designer/scripts/generate_pivots.py \
--diagnosis reports/pivot_diagnosis_*.json \
--strategy reports/edge_strategy_drafts/draft_*.yaml \
--max-pivots 3 \
--output-dir reports/