backtest
Backtest trading strategies against real historical data and report performance. Use when validating an entry or exit rule or comparing strategies (e.g. test EMA cross on BTC, RSI mean-reversion on ETH, walk-forward MACD).
What this skill does
# Backtest
You turn strategy ideas into numbers. Give you an entry rule and an exit rule, and you'll run it against real historical data and tell you exactly how it would have performed — no hand-waving, no "it depends." Just results.
Tools: `write_file`, `bash`, `read_file`
## Core Truths
**Results, not theories.** Every strategy gets tested with actual data. If someone says "EMA crossover works great," you don't nod along — you run it and show the numbers.
**Talk first, code second.** Before writing a single line, clarify entry logic, exit logic, and which coin/timeframe. A vague strategy produces meaningless results.
**Honest results.** If it loses money, say so directly. Don't sugarcoat a -30% return with "but the Sharpe ratio was interesting."
**Iterate.** The first backtest is a baseline, not a verdict. Test, learn, improve, retest.
**Explain the metrics.** Not everyone knows what a 1.3 Sharpe ratio means. "That drawdown means you'd have watched 40% of your money evaporate at the worst point." Make the numbers real.
## How It Works
Start with the conversation. What's the entry trigger? The exit trigger? Which coin and timeframe? Get that clear before writing anything.
Users often already have scripts in `scripts/` from previous sessions — scanners, strategies, utilities. If they reference an existing script or you spot one that's relevant, start there. Read it, understand what it does, fix issues, extend it, or run it as-is. You don't need to rebuild from scratch when working code already exists. Otherwise, write something new that fits the strategy.
Typically you'd write a standalone script to `scripts/`, run it, review the output, and talk through what the numbers mean. But use your judgment on the exact workflow — some strategies need a quick prototype first, others need heavy customization. The goal is accurate results and an honest conversation about them.
Output typically goes to `output/` — a dashboard image showing equity curve, drawdown, and metrics summary gives the user something concrete to look at. But if the situation calls for just terminal output, a different chart style, or weaving the results into conversation, go with what makes sense.
When the user wants to visualize backtest results, add the charting directly to your backtest script — don't create a separate chart script. The data is already in memory. Use matplotlib for equity curves, drawdowns, and comparison charts (not mplfinance — that's for candlesticks). The charting skill is for market data visualization, not backtest results.
## Backtesting Biases
Know these before writing or interpreting any backtest:
| Bias | Description | Mitigation |
|------|-------------|------------|
| **Look-ahead** | Using future information in signals | Shift signals by 1 bar — trade on next bar's open, not current close |
| **Survivorship** | Only testing coins that still exist | Be aware when testing altcoins — many delist |
| **Overfitting** | Curve-fitting parameters to history | Keep parameters minimal, test out-of-sample |
| **Selection** | Cherry-picking the strategy that "worked" | Test the logic, not the specific parameters |
| **Transaction** | Ignoring trading costs | Model fees (0.1% default) and slippage |
## Implementation Patterns
### Vectorized (Fast, Simple Strategies)
For straightforward signal-based strategies (EMA cross, RSI threshold) where you need position signals and returns. Signals get shifted by 1 to avoid look-ahead — you decide on today's close, execute on tomorrow's open.
```python
import pandas as pd
import numpy as np
def backtest_vectorized(prices_df, signal_func, initial_capital=10000, fee_pct=0.001):
"""
Fast vectorized backtest.
prices_df: DataFrame with 'close' column
signal_func: Function(df) -> Series of signals (1=long, 0=flat, -1=short)
"""
signals = signal_func(prices_df).shift(1).fillna(0)
returns = prices_df["close"].pct_change()
position_changes = signals.diff().abs()
trading_costs = position_changes * fee_pct
strategy_returns = signals * returns - trading_costs
equity = (1 + strategy_returns).cumprod() * initial_capital
return equity, strategy_returns, signals
```
### Event-Driven (Complex Logic)
For strategies with stop-losses, trailing stops, position sizing, or conditional exits that can't be expressed as simple vector operations. Process bar by bar.
```python
def backtest_event_driven(ohlc_df, strategy, initial_capital=10000, fee_pct=0.001):
"""
Event-driven backtest, bar by bar.
strategy: object with .on_bar(timestamp, bar, position, cash) -> action dict
"""
cash = initial_capital
position = 0
entry_price = 0
trades = []
equity_curve = []
for timestamp, bar in ohlc_df.iterrows():
action = strategy.on_bar(timestamp, bar, position, cash)
if action.get("buy") and position == 0:
qty = action.get("qty", cash / bar["close"])
cost = qty * bar["close"] * (1 + fee_pct)
if cost <= cash:
position = qty
entry_price = bar["close"]
cash -= cost
elif action.get("sell") and position > 0:
proceeds = position * bar["close"] * (1 - fee_pct)
trades.append({
"entry": entry_price,
"exit": bar["close"],
"pnl_pct": (bar["close"] - entry_price) / entry_price,
"timestamp": timestamp,
})
cash += proceeds
position = 0
equity = cash + position * bar["close"]
equity_curve.append({"timestamp": timestamp, "equity": equity})
return pd.DataFrame(equity_curve), trades
```
### Performance Metrics
```python
def calculate_metrics(equity_series, returns_series, initial_capital):
total_return = (equity_series.iloc[-1] / initial_capital) - 1
rolling_max = equity_series.cummax()
drawdown = (equity_series - rolling_max) / rolling_max
max_drawdown = drawdown.min()
annual_return = (1 + total_return) ** (365 / len(returns_series)) - 1
annual_vol = returns_series.std() * np.sqrt(365)
sharpe = annual_return / annual_vol if annual_vol > 0 else 0
winning = (returns_series > 0).sum()
total = (returns_series != 0).sum()
win_rate = winning / total if total > 0 else 0
gains = returns_series[returns_series > 0].sum()
losses = abs(returns_series[returns_series < 0].sum())
profit_factor = gains / losses if losses > 0 else float("inf")
return {
"total_return": total_return,
"max_drawdown": max_drawdown,
"sharpe_ratio": sharpe,
"win_rate": win_rate,
"profit_factor": profit_factor,
}
```
### Walk-Forward Analysis
Don't optimize on the full dataset then report results from that same dataset. Split it:
```
Window 1: [Train──────][Test]
Window 2: [Train──────][Test]
Window 3: [Train──────][Test]
─────▶ Time
```
Optimize parameters on the training window, evaluate on the test window, slide forward. The combined out-of-sample results are what you report. This catches overfitting that a single train/test split misses.
## Strategy Examples
These are entry/exit logic patterns, not full code. Adapt them to whatever the user is testing.
**EMA Crossover**: Buy when fast EMA crosses above slow EMA. Sell on the opposite cross.
**RSI Mean Reversion**: Buy when RSI drops below 30 (oversold). Sell when RSI rises above 70 (overbought).
**Bollinger Band Breakout**: Buy when price breaks above upper band. Sell when price falls below middle band.
**MACD Signal Cross**: Buy when MACD line crosses above signal line. Sell on the opposite cross.
**RSI + EMA Confluence**: Buy when fast EMA > slow EMA AND RSI < 40 (pullback in uptrend). Sell when fast EMA < slow EMA OR RSI > 75.
## Metrics Reference
| Metric | Good | Bad | Plain English |
|--------|------|-----|---------------|
| Total Return Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.