Agent SkillsHKUDS/Vibe-Trading › backtest-diagnose

backtest-diagnose

GitHub

用于诊断量化回测失败或表现不佳的问题,定位根因并修复。通过检查日志、代码和指标文件,分类处理运行时错误、逻辑缺陷及数据问题,确保回测结果正确。

agent/src/skills/backtest-diagnose/SKILL.md HKUDS/Vibe-Trading

Trigger Scenarios

用户报告回测失败或报错 回测结果异常(如零交易、资金利用率低)

Install

npx skills add HKUDS/Vibe-Trading --skill backtest-diagnose -g -y
More Options

Non-standard path

npx skills add https://github.com/HKUDS/Vibe-Trading/tree/main/agent/src/skills/backtest-diagnose -g -y

Use without installing

npx skills use HKUDS/Vibe-Trading@backtest-diagnose

指定 Agent (Claude Code)

npx skills add HKUDS/Vibe-Trading --skill backtest-diagnose -a claude-code -g -y

安装 repo 全部 skill

npx skills add HKUDS/Vibe-Trading --all -g -y

预览 repo 内 skill

npx skills add HKUDS/Vibe-Trading --list

SKILL.md

Frontmatter
{
    "name": "backtest-diagnose",
    "category": "tool",
    "description": "Diagnose failed or underperforming backtests, locate the root cause, and fix the issue"
}

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 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)

  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

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

  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

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"

Version History

  • 0aa45a9 Current 2026-07-24 17:44

Same Skill Collection

agent/src/skills/adr-hshare/SKILL.md
agent/src/skills/akshare/SKILL.md
agent/src/skills/alpha-zoo/SKILL.md
agent/src/skills/ashare-pre-st-filter/SKILL.md
agent/src/skills/asset-allocation/SKILL.md
agent/src/skills/behavioral-finance/SKILL.md
agent/src/skills/candlestick/SKILL.md
agent/src/skills/ccxt/SKILL.md
agent/src/skills/chanlun/SKILL.md
agent/src/skills/commodity-analysis/SKILL.md
agent/src/skills/corporate-events/SKILL.md
agent/src/skills/correlation-analysis/SKILL.md
agent/src/skills/correlation-regime/SKILL.md
agent/src/skills/cross-market-strategy/SKILL.md
agent/src/skills/crypto-derivatives/SKILL.md
agent/src/skills/data-routing/SKILL.md
agent/src/skills/defi-yield/SKILL.md
agent/src/skills/dividend-analysis/SKILL.md
agent/src/skills/doc-reader/SKILL.md
agent/src/skills/earnings-forecast/SKILL.md
agent/src/skills/earnings-revision/SKILL.md
agent/src/skills/eastmoney/SKILL.md
agent/src/skills/edgar-sec-filings/SKILL.md
agent/src/skills/elliott-wave/SKILL.md
agent/src/skills/event-driven/SKILL.md
agent/src/skills/execution-model/SKILL.md
agent/src/skills/factor-research/SKILL.md
agent/src/skills/fund-analysis/SKILL.md
agent/src/skills/fundamental-filter/SKILL.md
agent/src/skills/geopolitical-risk/SKILL.md
agent/src/skills/global-macro/SKILL.md
agent/src/skills/harmonic/SKILL.md
agent/src/skills/hedging-strategy/SKILL.md
agent/src/skills/hk-connect-flow/SKILL.md
agent/src/skills/ichimoku/SKILL.md
agent/src/skills/investor-lenses/SKILL.md
agent/src/skills/liquidation-heatmap/SKILL.md
agent/src/skills/macro-analysis/SKILL.md
agent/src/skills/market-microstructure/SKILL.md
agent/src/skills/minute-analysis/SKILL.md
agent/src/skills/ml-strategy/SKILL.md
agent/src/skills/mootdx/SKILL.md
agent/src/skills/multi-factor/SKILL.md
agent/src/skills/okx-market/SKILL.md
agent/src/skills/onchain-analysis/SKILL.md
agent/src/skills/options-advanced/SKILL.md
agent/src/skills/options-payoff/SKILL.md
agent/src/skills/options-strategy/SKILL.md
agent/src/skills/pair-trading/SKILL.md

Metadata

Files
0
Version
9806936
Hash
57318946
Indexed
2026-07-24 17:44

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-16 22:33
浙ICP备14020137号-1 $mapa de visitantes$