Bollinger Breakout (20, 2)
Positive risk-adjusted return in 13 of 18 cells — strongest on SPX500 · 4H (Sharpe 1.29); 5 cells lose after the 0.05% per-side fee. Trails buy-and-hold by 194.6pp on average.
§ Verdict rationale
Composite Sharpe 0.62 across 18 cells. The edge concentrates in SPX500 4H (Sharpe 1.29); 5 of 18 cells are negative after the 0.05% per-side fee. Trails buy-and-hold on average. The account is wiped out entirely in 2 of 18 cells — the fee drag alone, before any question of signal quality.
§ Alpha score breakdown
alpha = edge (0-40: clamp(compositeSharpe/2,0,1)*40) + stability (0-25: positiveCells/18*25) + flaw penalty (0 to -25: static findings, 0 across v1 catalog) + reproduction (0-10: engine oracle parity vs pine2py, 251/257 scripts = 9)
§ Equity vs buy-and-hold — fee-adjusted, per cell
§ All 18 cells — including the ugly ones
| Market · TF | Sharpe | Return | vs B&H | Max DD | Win | Trades |
|---|---|---|---|---|---|---|
| BTCUSD 1H | -0.95 | -100.0% | -1509.0pp | -100.0% | 36% | 1458 |
| BTCUSD 4H | 0.94 | +2042.4% | +647.7pp | -43.1% | 43% | 344 |
| BTCUSD 1D | 0.71 | +793.9% | -609.2pp | -61.9% | 39% | 67 |
| ETHUSD 1H | -0.54 | -100.0% | -635.8pp | -100.0% | 37% | 1412 |
| ETHUSD 4H | 0.59 | +638.7% | +116.1pp | -64.5% | 36% | 363 |
| ETHUSD 1D | 0.74 | +1610.3% | +1079.2pp | -39.9% | 52% | 58 |
| SPX500 1H | 0.78 | +18.0% | -54.7pp | -9.3% | 48% | 79 |
| SPX500 4H | 1.29 | +22.5% | -50.2pp | -5.8% | 63% | 27 |
| SPX500 1D | 0.22 | +19.5% | -569.9pp | -15.1% | 46% | 70 |
| QQQ 1H | 1.16 | +37.6% | -55.4pp | -12.2% | 47% | 85 |
| QQQ 4H | 0.65 | +15.5% | -77.3pp | -11.6% | 54% | 26 |
| QQQ 1D | 0.30 | +42.6% | -1391.0pp | -19.1% | 47% | 77 |
| GOLD 1H | 0.71 | +27.5% | -95.7pp | -19.3% | 47% | 95 |
| GOLD 4H | 1.05 | +47.0% | -76.1pp | -15.7% | 63% | 30 |
| GOLD 1D | 0.32 | +52.3% | -167.8pp | -19.7% | 43% | 72 |
| EURUSD 1H | -2.22 | -25.4% | -34.6pp | -27.3% | 36% | 320 |
| EURUSD 4H | -0.77 | -8.8% | -17.1pp | -10.3% | 46% | 82 |
| EURUSD 1D | -0.35 | -20.6% | -2.8pp | -24.3% | 33% | 75 |
13 of 18 cells positive · best SPX500 · 4H · cells are not equal length — the composite is a median
§ The exact source that ran — Pine v5
//@version=5strategy("Bollinger Breakout (20, 2)", initial_capital=100000, default_qty_type=strategy.percent_of_equity, default_qty_value=100)[mid, upper, lower] = ta.bb(close, 20, 2)longSig = ta.crossover(close, upper)exitSig = ta.crossunder(close, mid)if longSig strategy.entry("L", strategy.long)if exitSig strategy.close("L")plot(strategy.equity, "equity")plot(strategy.position_size, "pos")plot(strategy.closedtrades, "closed")plot(strategy.wintrades, "wins")plot(strategy.grossprofit, "gp")plot(strategy.grossloss, "gl")This source was executed verbatim by the wavealgo JS engine — there is no port step to drift. The engine is oracle-verified bar-by-bar (1e-9 tolerance) against an independent Python implementation on 251/257 corpus scripts.
§ Flaw checklist
Verdict rules: pass: composite Sharpe >= 0.9 and >= 12/18 cells positive · cond: composite Sharpe > 0 and best cell Sharpe >= 0.9 · fail: otherwise · rep: static repaint/look-ahead finding (none in the authored v1 catalog: confirmed-bar signals, next-bar-open fills)
§ What the numbers mean
- Sharpe ratio
- Risk-adjusted return: mean daily return divided by its standard deviation, annualized ×√252. The composite figure is the mean of the 18 cell Sharpes — one bad market drags it honestly.
- Max drawdown
- The worst peak-to-trough equity loss over the window, measured on the fee-adjusted curve. What you would have sat through, not what you would have ended with.
- Profit factor (PF)
- Gross profit divided by gross loss, with fees charged to the loss side. Above 1.0 means gross gains exceeded gross losses; 1.0–1.2 is usually noise.
- Win rate
- Share of closed trades that closed profitable. A high win rate with a profit factor near 1 means many small wins and a few large losses — common in mean-reversion.
- vs buy-and-hold
- Strategy total return minus the return of simply holding the asset over the same window — the benchmark any active strategy must beat to justify existing.
- Alpha score
- The desk’s 0–100 composite: out-of-sample edge (0–40), regime stability across cells (0–25), flaw penalty (0 to −25), reproduction accuracy (0–10). The exact formula ships with the data.
Bring your own. We grade it the same.
Engine: pine2js (next-bar-open fills, TV rule) · scored UTC 2026-08-08 04:53 · deterministic rerun — same data, same numbers. Backtested results are measurements of the past, not investment advice; nothing here is a recommendation to trade. wavealgo is operated by Streamize LLC.