Parabolic SAR Backtest

Strategy summary

Parabolic SAR is Wilder’s stop-and-reverse trend-following strategy applied to SPY, using an accelerating trailing SAR level to stay long in uptrends, short in downtrends, and reverse exposure when price strictly penetrates the active stop.

The indicator tracks the current trend’s extreme point, or EP, and an acceleration factor, or AF. In an uptrend, EP is the highest High reached since the uptrend began. In a downtrend, EP is the lowest Low reached since the downtrend began. AF starts at 0.02, increases by 0.02 when the trend makes a new extreme, and is capped at 0.20. This causes SAR to move toward price as the trend extends.

For this BTS implementation, the SAR level for day t is known before day t begins. If SPY is in an uptrend state and the daily low is strictly below the known SAR level, the strategy records a reversal to short after the close. If SPY is in a downtrend state and the daily high is strictly above the known SAR level, the strategy records a reversal to long after the close. Equality does not reverse the state.

The reversal trade is executed at the next open. This preserves a deterministic EOD mapping of Wilder’s stop-and-reverse logic while avoiding any claim that the backtest fills an intraday stop order at the SAR level.

What this strategy is not

  • Not a long-only SPY/cash timer; the strategy is always in the market and can be either long or short SPY.
  • Not an intraday stop-fill simulation; reversals are recorded after the close and executed at the next open, not at the SAR level.
  • Not a close-only crossover, moving-average, ADX, volatility, or trend-quality composite; reversals require strict daily High/Low penetration of the active SAR stop.
  • Instead: a single-instrument stop-and-reverse system that flips between long and short SPY when price strictly penetrates the active SAR stop.

Report summary

ItemValue
StrategyParabolic SAR
CategoryTrend following / Stop-and-reverse
UniverseSPY
Trade DirectionLong-short
Free Preview Window2021–2025 (5 years); BTS uses the five most recent whole calendar years for free previews.
Full Backtest Period1994–2025 (32 years); BTS uses the longest supported whole-calendar-year window available under the strategy universe, required instrument history, indicator warm-up, and methodology rules.
Window Start RuleHeadline reporting begins once SPY data availability and the required two-bar SAR warm-up support valid strategy and benchmark equity observations.
Starting Capital$10,000
Primary BenchmarkBuy-and-hold SPY
Methodology VersionBTS-3377
Publication DateMay 8, 2026
Source / CreditJ. Welles Wilder Jr., New Concepts in Technical Trading Systems

Benchmark summary

The primary benchmark is buy-and-hold SPY. That is the cleanest control because the strategy trades the same instrument, but adds a Parabolic SAR timing and sign-flip overlay that can move the portfolio from long SPY to short SPY.

Removing the SAR overlay leaves passive SPY exposure. The comparison is therefore intended to show what the stop-and-reverse rule changed: trend-alignment benefit, whipsaw cost, short-side drag, and the opportunity cost of being short or reversed during equity advances.

For the benchmark-selection framework, see How to Choose the Right Benchmark.

  • Primary Benchmark: buy-and-hold SPY.
  • Preserves: the same SPY instrument and broad equity exposure.
  • Removes: the Parabolic SAR timing, stop-and-reverse, and sign-flip overlay.
  • Excludes: cash, SHY, an always-short SPY position, a long-only Parabolic SAR timer, or a platform-specific SAR variant.

Key metrics: 2021–2025 free preview

  • The free preview is a recent-window orientation tool, not the complete evidence set.
  • A five-year free-preview window can be useful, but it can also overstate or understate the full historical tradeoff.
  • The full report expands the scorecard across the complete report window and adds the path-level interpretation behind the headline numbers.

In this five-year free preview, Parabolic SAR continued to trail buy-and-hold SPY. The strategy lost capital with a -7.9% CAGR and a $6,636 rebased ending value, while the benchmark compounded to $19,791 with a 14.7% CAGR.

CategoryMetricStrategyBenchmark
ActivityTime in Market100.0%100.0%
ActivityTrades per Year48.6
ActivityWin Rate36.1%
RiskVolatility13.9%17.1%
RiskMax Drawdown-35.7%-24.5%
RiskSharpe Ratio-0.50.9
RiskCalmar Ratio-0.20.6
ResultCAGR-7.9%14.7%
ResultEnding Capital$6,636$19,791
2021–2025, whole calendar years. Ending Capital is final value of a rebased $10,000 starting account. Time in Market excludes terminal reporting closes. Win Rate uses FIFO closed-position observations. Benchmark is a passive hold, not a recurring trade system, so benchmark Trades per Year and Win Rate are not reported.

Unlock the complete backtest

Go beyond the free preview with full evidence, stress tests and implementation blueprints.

Rules and mechanics
See exactly what was tested so you can judge the result—not just the headline.

Full backtest history
Put the free preview in context with the full historical record, drawdowns and key tradeoffs.

Advanced diagnostics
Assess the results across monthly returns, market regimes and 3/5-year rolling windows.

Pseudocode and implementation
Recreate the strategy logic with AI-ready pseudocode: explicit inputs, state, timing and outputs.