backtest-diagnose

backtest-diagnose is a skill for Claude Code, Codex from skloxo/TideTrading. It costs 25 tokens per session (1,046 once invoked), scanned A, original, MIT.

A workflow for finding and correcting failed or weak backtests. A backtest runs a trading strategy against historical market data to evaluate its behaviour.

In plain words
What is it for?
Inspecting backtest files and strategy code, identifying the root cause, applying a correction, rerunning the test, and reviewing the new metrics.
Why use it?
It separates coding errors from strategy-logic problems, such as no trades or abnormal results, and checks whether a fix worked.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Inspecting backtest files and strategy code, identifying the root cause, applying a correction, rerunning the test, and reviewing the new metrics.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skloxo/tidetrading/backtest-diagnose
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add skloxo/TideTrading --skill backtest-diagnose
Clone the repo
git clone --depth 1 https://github.com/skloxo/TideTrading

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for backtest-diagnose

README.md
[![agentmods](https://agentmods.dev/badge/skills/skloxo/tidetrading/backtest-diagnose/github.svg)](https://agentmods.dev/skills/skloxo/tidetrading/backtest-diagnose)
Your own site
<a href="https://agentmods.dev/skills/skloxo/tidetrading/backtest-diagnose"><img src="https://agentmods.dev/badge/skills/skloxo/tidetrading/backtest-diagnose/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for backtest-diagnose

Your own site · 80×15
<a href="https://agentmods.dev/skills/skloxo/tidetrading/backtest-diagnose"><img src="https://agentmods.dev/badge/skills/skloxo/tidetrading/backtest-diagnose.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,046 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00025 $0.01046
Opus 5 $0.00013 $0.00523
Sonnet 5 $0.00005 $0.00209
Haiku 4.5 $0.00003 $0.00105

Measured 9d ago against content hash 573189461d6e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

backtest-diagnose scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent/src/skills/backtest-diagnose/SKILL.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Read the full file on GitHub · 90 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 90 lines · 25 tokens per session scan A 573189461d6e

Subscribe to this mod's changes

backtest-diagnose is a skill published in the GitHub repository skloxo/TideTrading (10 stars, last pushed 2d ago), licensed MIT. It adds 25 tokens to every session and 1,046 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

backtest-diagnose

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

HKUDS/Vibe-Trading · 25 tokens

daily-deep-brief

A scheduled, pre-market investment briefing for Hong Kong and United States stocks. A deterministic preparation step gathers data and an agent adds judgment, while a later step validates and publishes the result.

KCNyu/clawock · 163 tokens

hk-stock-analysis

A workspace-aware analysis workflow for Hong Kong-listed stocks. It retrieves prices, technical indicators, market comparisons, and news through a local data pipeline, then adds Hong Kong-specific investment context.

KCNyu/clawock · 126 tokens

us-stock-analysis

Workspace-aware US stock analysis for kcn. Routes through clawock analyze-us / clawock us-quotes instead of generic web search, then layers fundamental/technical/news analysis on top. Use when user asks to analyze a US ticker (e.g. "analyze AAPL", "look at RKLB", "compare TSLA vs NVDA"), check earnings, run…

KCNyu/clawock · 97 tokens

invest-analyst

A framework for producing professional investment research, including company reports, industry studies, event analysis, analyst-expectation reviews, comparisons, and market summaries. It connects several investment research workflows into one process.

taxueseek/fund-investment-guide · 193 tokens

invest-fund

A Chinese-language guide for analysing investment funds, with different workflows for comparing funds, reviewing ETFs, examining new funds, and studying industry funds.

taxueseek/fund-investment-guide · 142 tokens