Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
tradermonty avatar

Strategy Pivot Designer

  • 912 installs
  • 2.6k repo stars
  • Updated August 4, 2026
  • tradermonty/claude-trading-skills

strategy-pivot-designer is an agent skill that detects backtest iteration stagnation and generates structurally different trading strategy architectures so developers who run quantitative backtests escape local optima in

About

strategy-pivot-designer is a tradermonty agent skill that acts as a feedback loop in the Edge quantitative trading pipeline (hint-extractor, concept-synthesizer, strategy-designer, candidate-agent). When backtest scores plateau despite multiple refinement iterations, the skill diagnoses stagnation and proposes structurally different strategy pivot architectures—redesigning the strategy skeleton rather than tweaking parameters. Developers reach for strategy-pivot-designer when parameter tuning reaches a local optimum, when backtest metrics stop improving across iterations, or when they need agent-generated alternative strategy concepts to break out of repetitive optimization loops in automated trading research workflows.

  • Detects iteration stagnation using accumulated backtest-expert evaluations
  • Generates structurally different strategy skeletons rather than parameter tweaks
  • Outputs research-only and export-ready YAML drafts compatible with candidate-agent
  • Produces human-readable pivot analysis report and diagnosis JSON
  • Breaks local optima in the Edge pipeline (hint-extractor → concept-synthesizer → strategy-designer → candidate-agent)

Strategy Pivot Designer by the numbers

  • 912 all-time installs (skills.sh)
  • +77 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #1,197 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tradermonty/claude-trading-skills --skill strategy-pivot-designer

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs912
repo stars2.6k
Last updatedAugust 4, 2026
Repositorytradermonty/claude-trading-skills

How do you pivot a stagnating backtest strategy architecture?

Automatically detect backtest stagnation and generate structurally different trading strategy architectures instead of endlessly tuning parameters.

Who is it for?

Quantitative developers running automated backtest iteration pipelines who need structural strategy redesigns when parameter tuning plateaus.

Skip if: Casual traders without backtesting infrastructure, or teams seeking only incremental parameter optimization on a working strategy.

When should I use this skill?

Backtest scores plateau after multiple iterations, parameter tuning stalls, or user asks for a structural strategy pivot in the Edge pipeline.

What you get

Structurally different strategy pivot proposals, redesigned strategy skeletons, and breakout plans from backtest local optima.

  • Strategy pivot proposals
  • Redesigned strategy architecture concepts

Files

SKILL.mdMarkdownGitHub ↗

Strategy Pivot Designer

Overview

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.

When to Use

  • Backtest scores have plateaued despite multiple refinement iterations.
  • A strategy shows signs of overfitting (high in-sample, low robustness).
  • Transaction costs defeat the strategy's thin edge.
  • Tail risk or drawdown exceeds acceptable thresholds.
  • You want to explore fundamentally different strategy architectures for the same market hypothesis.

Prerequisites

  • Python 3.9+
  • PyYAML
  • Iteration history JSON (accumulated backtest-expert evaluations)
  • Source strategy draft YAML (from edge-strategy-designer)

Output

  • pivot_drafts/research_only/*.yaml — strategy_draft compatible YAML proposals
  • pivot_drafts/exportable/*.yaml — export-ready drafts + ticket YAML for candidate-agent
  • pivot_report_*.md — human-readable pivot analysis
  • pivot_manifest_*.json — metadata for all generated files
  • pivot_diagnosis_*.json — stagnation detection results

Workflow

1. Accumulate backtest evaluation results into an iteration history file using --append-eval. 2. Run stagnation detection on the history to identify triggers (plateau, overfitting, cost defeat, tail risk). 3. If stagnation detected, generate pivot proposals using three techniques: assumption inversion, archetype switch, objective reframe. 4. Review ranked proposals (scored by quality potential + novelty). 5. For exportable proposals, ticket YAML is ready for edge-candidate-agent pipeline. 6. For research_only proposals, manual strategy design needed before pipeline integration. 7. Feed the selected pivot draft back into backtest-expert for the next iteration cycle.

Quick Commands

Append a backtest evaluation to history (creates history if new):

python3 skills/strategy-pivot-designer/scripts/detect_stagnation.py \
  --append-eval reports/backtest_eval_2026-02-10_120000.json \
  --history reports/iteration_history.json \
  --strategy-id draft_edge_concept_breakout_behavior_riskon_core \
  --changes "Widened stop_loss from 5% to 7%"

Detect stagnation:

python3 skills/strategy-pivot-designer/scripts/detect_stagnation.py \
  --history reports/iteration_history.json \
  --output-dir reports/

Generate pivot proposals:

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/

Resources

  • skills/strategy-pivot-designer/scripts/detect_stagnation.py
  • skills/strategy-pivot-designer/scripts/generate_pivots.py
  • references/stagnation_triggers.md
  • references/strategy_archetypes.md
  • references/pivot_techniques.md
  • references/pivot_proposal_schema.md
  • skills/backtest-expert/scripts/evaluate_backtest.py
  • skills/edge-strategy-designer/scripts/design_strategy_drafts.py

Related skills

How it compares

Pick strategy-pivot-designer over parameter-tuning skills when backtest metrics have plateaued and the strategy architecture itself needs structural redesign.

FAQ

When does strategy-pivot-designer trigger?

strategy-pivot-designer triggers when backtest scores plateau despite multiple refinement iterations and parameter tuning reaches a local optimum. The skill then proposes structurally different strategy architectures instead of more parameter tweaks.

How does strategy-pivot-designer fit the Edge pipeline?

strategy-pivot-designer acts as a feedback loop in the Edge pipeline connecting hint-extractor, concept-synthesizer, strategy-designer, and candidate-agent stages, breaking stagnation by redesigning strategy skeletons.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.