ワンクリックで
iterating-strategies
Track strategy versions, log changes, and prevent regression during Pine Script development.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Track strategy versions, log changes, and prevent regression during Pine Script development.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Main application building orchestrator. Creates full-stack applications from natural language requests. Determines project type, selects tech stack, coordinates agents.
Project scaffolding templates for new applications. Use when creating new projects from scratch. Contains 12 templates for various tech stacks.
Create interface designs, wireframes, and design systems. Masters user research, accessibility standards, and modern design tools. Specializes in design tokens, component libraries, and inclusive design. Use PROACTIVELY for design systems, user flows, or interface optimization.
UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 9 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient. Integrations: shadcn/ui MCP for component search and examples.
Acts as a brainstorming partner and story director to create a TED-style presentation blueprint. Use when the user asks to brainstorm a presentation, outline a talk, or structure ideas for a slide deck.
Generates a flawless Marp Markdown presentation or custom HTML deck from a presentation blueprint. Use when the user wants to convert an outline or blueprint into actual presentation slides (Marp, HTML, PDF, PPTX).
| name | iterating-strategies |
| description | Track strategy versions, log changes, and prevent regression during Pine Script development. |
analyzing-backtests recommends improvementsPrevent the common trap of:
Ask the user:
If no baseline exists, prompt to run backtest first.
ENFORCE the discipline:
❌ BAD: "Add RSI filter, change SL to trailing, and use ATR for sizing"
✅ GOOD: "Add RSI > 50 filter for long entries"
If user requests multiple changes, respond:
"I see 3 changes. Let's implement them one at a time so we can measure each impact. Which should we start with?"
After implementing a change, prompt user to record:
### v[X.Y] - [Brief Description]
**Date:** [Date]
**Change:** [What was modified]
**Hypothesis:** [Why this should improve performance]
**Backtest Results:**
- Net Profit: $[X] ([X]%)
- Profit Factor: [X]
- Max Drawdown: [X]%
- Total Trades: [X]
- Win Rate: [X]%
**Verdict:** ✅ KEEP / ❌ REVERT / ⚠️ NEEDS MORE TESTING
**Notes:** [Observations]
When comparing, create a table:
| Metric | v1.0 | v1.1 | v1.2 | Best |
|---|---|---|---|---|
| Net Profit | $X | $Y | $Z | vX.X |
| Profit Factor | X | Y | Z | vX.X |
| Max Drawdown | X% | Y% | Z% | vX.X |
| Win Rate | X% | Y% | Z% | vX.X |
Suggest users maintain this file alongside their strategy:
# [Strategy Name] Changelog
## Current Best: v[X.X]
---
### v1.0 - Baseline
**Date:** YYYY-MM-DD
**Description:** Initial version with EMA crossover
**Results:**
- PF: 1.2 | DD: 18% | Trades: 89 | WR: 45%
---
### v1.1 - Added ADX filter
**Date:** YYYY-MM-DD
**Change:** Only trade when ADX > 25
**Hypothesis:** Reduce noise in ranging markets
**Results:**
- PF: 1.5 | DD: 12% | Trades: 52 | WR: 48%
**Verdict:** ✅ KEEP - Better PF, lower DD
**Trade-off:** Fewer trades (acceptable)
---
### v1.2 - Tightened stops
**Date:** YYYY-MM-DD
**Change:** SL from 2% → 1.5%
**Hypothesis:** Reduce average loss
**Results:**
- PF: 1.3 | DD: 15% | Trades: 52 | WR: 42%
**Verdict:** ❌ REVERT - Higher DD, lower WR
**Learning:** Stop was too tight, got stopped out of winners
---
If strategy has > 5 optimizable parameters, warn:
"This strategy has [N] parameters. Each parameter increases overfitting risk. Consider simplifying."
"This change reduced trades from 100 → 40. The new results may not be statistically significant. Consider testing on more data."
If user reverts a change but then adds similar logic:
"Note: You reverted the RSI filter in v1.3 but are now adding a Stochastic filter. These serve similar purposes. Are you sure?"
planning-trading-systems if strategy needs redesigncoding-pinescript for implementationanalyzing-backtests to assess resultsWhen user asks: