Backtest Diagnosis
Overview
Use this skill when a user reports that a backtest failed, raised an error, or produced poor results.
Diagnostic Workflow
- Read existing artifacts: use
read_file to inspect artifacts/metrics.csv, equity.csv, and trades.csv
- Read the code: use
read_file to inspect code/signal_engine.py and config.json
- Classify the issue: determine the root cause using the error taxonomy below
- Apply the fix: use
edit_file to modify the code, then rerun the backtest
- Verify the fix: use
read_file to inspect the new metrics.csv
Error Taxonomy
Runtime Errors (exit_code != 0)
| Error Type |
Common Cause |
Fix |
| ImportError |
Missing dependency |
bash("pip install xxx") |
| KeyError |
DataFrame column-name mismatch |
Check the actual column names in data_map |
| IndexError |
Empty data or insufficient length |
Add length checks |
| TypeError |
Incorrect signal type |
Ensure the return value is pd.Series |
Logic Bugs (Backtest Succeeds but Results Are Abnormal)
- 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.
- 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.
- Capital utilization < 50% (mostly in cash): position-sizing bug. Signal triggers may be too sparse, or the position-sizing logic may be wrong.
- 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
| Symptom |
Root Cause |
Fix |
| No data fetched |
Invalid API token or code issue |
Check config.json |
| Too little data |
Date range too narrow |
Expand 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
artifacts/metrics.csv exists and is non-empty
artifacts/equity.csv exists and is non-empty
trade_count > 0 (0 trades means a signal bug)
- The equity series contains no
NaN
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:
- AST syntax passes:
bash("python -c \"import ast; ast.parse(open('code/signal_engine.py').read()); print('OK')\"")
- Contains
class SignalEngine: the file must define class SignalEngine
- Contains
def generate: the class must contain a def generate method
- 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"
1---2name: backtest-diagnose3description: Diagnose failed or underperforming backtests, locate the root cause, and fix the issue4---5
6# Backtest Diagnosis
7
8## Overview
9
10Use this skill when a user reports that a backtest failed, raised an error, or produced poor results.
11
12## Diagnostic Workflow
13
141. **Read existing artifacts**: use `read_file` to inspect `artifacts/metrics.csv`, `equity.csv`, and `trades.csv`
152. **Read the code**: use `read_file` to inspect `code/signal_engine.py` and `config.json`
163. **Classify the issue**: determine the root cause using the error taxonomy below
174. **Apply the fix**: use `edit_file` to modify the code, then rerun the backtest
185. **Verify the fix**: use `read_file` to inspect the new `metrics.csv`
19
20## Error Taxonomy
21
22### Runtime Errors (`exit_code != 0`)
23
24| Error Type | Common Cause | Fix |
25|---------|---------|---------|
26| ImportError | Missing dependency | `bash("pip install xxx")` |
27| KeyError | DataFrame column-name mismatch | Check the actual column names in `data_map` |
28| IndexError | Empty data or insufficient length | Add length checks |
29| TypeError | Incorrect signal type | Ensure the return value is `pd.Series` |
30
31### Logic Bugs (Backtest Succeeds but Results Are Abnormal)
32
331. **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.
342. **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.
353. **Capital utilization < 50%** (mostly in cash): position-sizing bug. Signal triggers may be too sparse, or the position-sizing logic may be wrong.
364. **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.
37
38### Data Errors
39
40| Symptom | Root Cause | Fix |
41|------|------|---------|
42| No data fetched | Invalid API token or code issue | Check `config.json` |
43| Too little data | Date range too narrow | Expand the date range |
44
45### Data-Source Error Ignore List
46
47If you encounter the following keywords, **do not modify the code**. The problem is on the data-provider side:
48- a provider-side "no data available" response
49- `rate limit`
50- `API limit`
51- `daily limit`
52- `Information` (common in Tushare API responses)
53
54These issues require the user to check the API token, switch data sources, or wait for the quota to reset.
55
56## Hard-Gate Checklist
57
581. `artifacts/metrics.csv` exists and is non-empty
592. `artifacts/equity.csv` exists and is non-empty
603. `trade_count > 0` (`0` trades means a signal bug)
614. The equity series contains no `NaN`
625. `exit_code == 0`
63
64## Evidence hookup
65
66This 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.
67
68## Fixing Principles
69
70- Use **edit_file** to make precise code fixes instead of rewriting the entire file with `write_file`, unless the structure is fundamentally broken
71- Fix the bug only, do not change strategy logic unless the user explicitly asks
72- Fix one issue at a time, and rerun the backtest immediately after each fix
73- Limit yourself to at most 3 repair iterations
74
75## Post-Fix Validation Rules
76
77After modifying `signal_engine.py`, you must confirm:
781. **AST syntax passes**: `bash("python -c \"import ast; ast.parse(open('code/signal_engine.py').read()); print('OK')\"")`
792. **Contains `class SignalEngine`**: the file must define `class SignalEngine`
803. **Contains `def generate`**: the class must contain a `def generate` method
814. **Rerun the backtest**: after the fix, rerun the backtest and verify the results
82
83## `action_items` Writing Rules
84
85After diagnosis, output actionable improvement suggestions:
86- Format: `"Change X from A to B"` or `"Add X logic in signal_engine.py"`
87- Be specific about parameter values, filenames, and function names
88- Provide at least 2 items
89- Examples:
90 - `"Change RSI threshold from 30 to 25 in signal_engine.py line 42"`
91 - `"Add signals = signals.fillna(0) after signal calculation to prevent NaN propagation"`
92 - `"Add a volume filter: skip buy signals when volume is below the 20-day average"`