# Backtesting Frameworks > Build robust backtesting systems for trading strategies with proper handling of look-ahead bias, survivorship bias, and transaction costs. Use when developing trading algorithms, validating strategies, or building backtesting infrastructure. Source: https://skillsagentes.com/skills/wshobson/agents/backtesting-frameworks Repository: https://github.com/wshobson/agents Author: wshobson License: MIT Updated: hace 2 meses Context cost: 60 tok installed, 878 tok once triggered, 5.4k tok with every bundled file Bundle: 2 files, 21 KB Permissions requested: none declared ## Install ```bash npx -y skills add wshobson/agents --skill backtesting-frameworks --agent claude-code ``` ## What it does - Guía la construcción de sistemas de backtesting con manejo correcto de look-ahead bias, survivorship bias y costes de transacción - Define la estructura correcta train/validation/test para backtests - Explica cómo implementar walk-forward analysis con ventanas móviles - Enumera buenas y malas prácticas (point-in-time data, Monte Carlo, evitar overfitting) ## Use it when - Desarrollar backtests de estrategias de trading - Construir infraestructura de backtesting - Validar el rendimiento de una estrategia o compararla con alternativas - Implementar walk-forward analysis y evitar sesgos comunes ## What triggers it - "Ayúdame a construir un backtest sin look-ahead bias para mi estrategia" - "Necesito implementar walk-forward analysis en mi sistema de trading" - "Cómo evito el survivorship bias en mi backtesting" ## Before you install - Para detalles de implementación adicionales, consultar references/details.md. ## Files - SKILL.md — 3 KB - references/details.md — 18 KB ## SKILL.md Reproduced verbatim from wshobson/agents under MIT. This section is the upstream document and is in English. # Backtesting Frameworks Build robust, production-grade backtesting systems that avoid common pitfalls and produce reliable strategy performance estimates. ## When to Use This Skill - Developing trading strategy backtests - Building backtesting infrastructure - Validating strategy performance - Avoiding common backtesting biases - Implementing walk-forward analysis - Comparing strategy alternatives ## Core Concepts ### 1. Backtesting Biases | Bias | Description | Mitigation | | ---------------- | ------------------------- | ----------------------- | | **Look-ahead** | Using future information | Point-in-time data | | **Survivorship** | Only testing on survivors | Use delisted securities | | **Overfitting** | Curve-fitting to history | Out-of-sample testing | | **Selection** | Cherry-picking strategies | Pre-registration | | **Transaction** | Ignoring trading costs | Realistic cost models | ### 2. Proper Backtest Structure ``` Historical Data │ ▼ ┌─────────────────────────────────────────┐ │ Training Set │ │ (Strategy Development & Optimization) │ └─────────────────────────────────────────┘ │ ▼ ┌─────────────────────────────────────────┐ │ Validation Set │ │ (Parameter Selection, No Peeking) │ └─────────────────────────────────────────┘ │ ▼ ┌─────────────────────────────────────────┐ │ Test Set │ │ (Final Performance Evaluation) │ └─────────────────────────────────────────┘ ``` ### 3. Walk-Forward Analysis ``` Window 1: [Train──────][Test] Window 2: [Train──────][Test] Window 3: [Train──────][Test] Window 4: [Train──────][Test] ─────▶ Time ``` ## Detailed worked examples and patterns Detailed sections (starting with `## Implementation Patterns`) live in `references/details.md`. Read that file when the navigation summary above is insufficient. ## Best Practices ### Do's - **Use point-in-time data** - Avoid look-ahead bias - **Include transaction costs** - Realistic estimates - **Test out-of-sample** - Always reserve data - **Use walk-forward** - Not just train/test - **Monte Carlo analysis** - Understand uncertainty ### Don'ts - **Don't overfit** - Limit parameters - **Don't ignore survivorship** - Include delisted - **Don't use adjusted data carelessly** - Understand adjustments - **Don't optimize on full history** - Reserve test set - **Don't ignore capacity** - Market impact matters --- Skills Agentes — https://skillsagentes.com/skills/wshobson/agents/backtesting-frameworks