Backtest Diagnose logo

Backtest Diagnose

OrganizationPopular
HKUDS
backtest-diagnose

Diagnose failed or underperforming backtests, locate the root cause, and fix the issue

Overview

PublisherHKUDS
RepositoryVibe-Trading
Skill namebacktest-diagnose
Stars
33.6K
Forks
5.5K
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by HKUDS on GitHub. Read the source before you install it.

Installation

Install the Backtest Diagnose AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/HKUDS/Vibe-Trading.git /tmp/Vibe-Trading
mkdir -p .claude/skills
cp -r /tmp/Vibe-Trading/agent/src/skills/backtest-diagnose .claude/skills/backtest-diagnose
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Backtest Diagnose in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Backtest Diagnose on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Backtest Diagnose is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Backtest Diagnosis

Overview

Use this skill when a user reports that a backtest failed, raised an error, or produced poor results.

Diagnostic Workflow

  1. Read existing artifacts: use read_file to inspect artifacts/metrics.csv, equity.csv, and trades.csv
  2. Read the code: use read_file to inspect code/signal_engine.py and config.json
  3. Classify the issue: determine the root cause using the error taxonomy below
  4. Apply the fix: use edit_file to modify the code, then rerun the backtest
  5. Verify the fix: use read_file to inspect the new metrics.csv

Error Taxonomy

Runtime Errors (exit_code != 0)

Error TypeCommon CauseFix
ImportErrorMissing dependencybash("pip install xxx")
KeyErrorDataFrame column-name mismatchCheck the actual column names in data_map
IndexErrorEmpty data or insufficient lengthAdd length checks
TypeErrorIncorrect signal typeEnsure the return value is pd.Series

Logic Bugs (Backtest Succeeds but Results Are Abnormal)

  1. Zero trades (trade_count=0): signal-logic bug. Conditions are too strict, so the signal stays at 0. Check whether entry and exit logic is reasonable, and inspect the signal series to confirm it is not all zeros.
  2. Late trades (first trade occurs more than 2 years after the backtest start): data-filtering bug. The lookback window may be too long, or the initial data segment may have been dropped. Shorten the window or check whether dropna is too aggressive.
  3. Capital utilization < 50% (mostly in cash): position-sizing bug. Signal triggers may be too sparse, or the position-sizing logic may be wrong.
  4. Open position at the end (a position still exists when the backtest ends): exit-timing bug. Forced liquidation may be missing, or exit logic does not cover the final segment.

Data Errors

SymptomRoot CauseFix
No data fetchedInvalid API token or code issueCheck config.json
Too little dataDate range too narrowExpand the date range

Data-Source Error Ignore List

If you encounter the following keywords, do not modify the code. The problem is on the data-provider side:

  • a provider-side "no data available" response
  • rate limit
  • API limit
  • daily limit
  • Information (common in Tushare API responses)

These issues require the user to check the API token, switch data sources, or wait for the quota to reset.

Hard-Gate Checklist

  1. artifacts/metrics.csv exists and is non-empty
  2. artifacts/equity.csv exists and is non-empty
  3. trade_count > 0 (0 trades means a signal bug)
  4. The equity series contains no NaN
  5. exit_code == 0

Evidence hookup

This Hard-Gate Checklist is also the evidence ingestion gate for Strategy Discovery: a run failing any gate produces no evidence rows — never partial rows — and is skipped with a stable machine-readable token (hard-gate:exit-nonzero, hard-gate:metrics-missing, hard-gate:zero-trades, hard-gate:equity-empty, hard-gate:equity-nan). Diagnose and fix the failing gate as usual, rerun the backtest, then repopulate the evidence cache with refresh_strategy_evidence (agent tool / MCP tool, or vibe-trading strategy-evidence refresh --manifest <path>) so the fixed run becomes queryable evidence. See the strategy-discovery skill for the manifest format and the full gate list.

Fixing Principles

  • Use edit_file to make precise code fixes instead of rewriting the entire file with write_file, unless the structure is fundamentally broken
  • Fix the bug only, do not change strategy logic unless the user explicitly asks
  • Fix one issue at a time, and rerun the backtest immediately after each fix
  • Limit yourself to at most 3 repair iterations

Post-Fix Validation Rules

After modifying signal_engine.py, you must confirm:

  1. AST syntax passes: bash("python -c \"import ast; ast.parse(open('code/signal_engine.py').read()); print('OK')\"")
  2. Contains class SignalEngine: the file must define class SignalEngine
  3. Contains def generate: the class must contain a def generate method
  4. Rerun the backtest: after the fix, rerun the backtest and verify the results

action_items Writing Rules

After diagnosis, output actionable improvement suggestions:

  • Format: "Change X from A to B" or "Add X logic in signal_engine.py"
  • Be specific about parameter values, filenames, and function names
  • Provide at least 2 items
  • Examples:
    • "Change RSI threshold from 30 to 25 in signal_engine.py line 42"
    • "Add signals = signals.fillna(0) after signal calculation to prevent NaN propagation"
    • "Add a volume filter: skip buy signals when volume is below the 20-day average"

Frequently asked questions

What does the Backtest Diagnose AI skill do?

Diagnose failed or underperforming backtests, locate the root cause, and fix the issue

Why use Backtest Diagnose on TypingMind?

Because you install it once and use it with any model. Backtest Diagnose is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Backtest Diagnose in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/HKUDS/Vibe-Trading/tree/main/agent/src/skills/backtest-diagnose. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Backtest Diagnose?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Backtest Diagnose?

As many as you like. As long as a model supports skills, you can use Backtest Diagnose with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Backtest Diagnose AI skill free?

Yes. It is published on GitHub by HKUDS under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇