TapeScript
← Blog

Volatility Targeting: The Boring Risk Trick That Beat the Market

July 11, 2026 · 9 min read

Volatility Targeting: The Boring Risk Trick That Beat the Market

Most traders spend 90% of their time hunting for the perfect entry. But one of the most proven ways to make a strategy better has nothing to do with when you get in — it is how big you bet, and when. The rule is almost dull: trade smaller when the market is wild, and bigger when it is calm. Two professors tested that idea across decades of data and found it quietly improved nearly everything.

Who found it, and where (the who / what / when)

The paper is "Volatility-Managed Portfolios" by Alan Moreira and Tyler Muir, published in The Journal of Finance in 2017 — one of the three most respected finance journals in the world. Both authors are university finance professors (Moreira at Rochester, Muir at UCLA). This was not a blog tip; it was peer-reviewed research that has since been cited thousands of times.

What they actually did (the how they studied it)

They took well-known strategies — the overall stock market, momentum, value, and others — and added one twist. Each month they measured how choppy the market had just been (its volatility). When the recent past was wild, they cut their position size. When it was calm, they raised it. They kept the average risk the same, so this was not "take more risk" — it was "take risk at the right times." Then they compared the smooth, volatility-managed version to the plain version.

What they found (the data points)

The volatility-managed versions earned higher risk-adjusted returns almost across the board. In money terms, the standard scorecard for "return per unit of risk" is the Sharpe ratio — bigger is better. Managing volatility raised the Sharpe ratio of the broad market by roughly a fifth, and by even more for several factor strategies, while also producing a positive "alpha" (return you cannot explain by simply taking more risk). The gain came mostly from dodging the worst storms: high-volatility months tended to have poor returns for the risk involved, so pulling back during them avoided ugly losses.

The one equation — explained like you are 12

Realized volatility just means "how much have prices been bouncing around lately." You measure it as the standard deviation of recent returns — a fancy phrase for "the typical size of a daily move." If a market usually moves about 1% a day, its volatility is low. If it is suddenly swinging 3–4% a day, volatility is high.

The sizing rule is one line:

Position size = (Target volatility) ÷ (Recent volatility)

Say you want a steady "bumpiness" of 10%. If the market is currently running at 20% volatility (twice as wild as your target), you hold half a position (10 ÷ 20 = 0.5). If it is running at 5% (very calm), you would hold double (10 ÷ 5 = 2), usually with a sensible cap so you never get reckless. That is the whole trick: your risk stays roughly constant even as the market's mood changes.

Why it should work (the why)

Two honest reasons. First, volatility is predictable, but returns are not. Wild days cluster together (a stormy Monday is often followed by a stormy Tuesday), yet the market does not reliably pay you extra for enduring that chaos. So calm periods quietly offer better return per unit of risk than stormy ones. Second, it is behavioral: crashes and panics happen in high-volatility regimes, and that is exactly when normal position sizing blows accounts up. Shrinking during storms sidesteps the fat tail that ruins traders.

Does it still hold — honestly?

Yes, but read the fine print. This is a sizing overlay, not an entry signal — it makes a decent strategy steadier; it cannot rescue an edge that was never there. It was studied mostly on stock indexes and factors, so on a single futures contract or a currency pair you must re-test it. Constantly resizing also creates extra trades and costs, and the caps you choose matter. The good news for futures and forex traders: managed-futures firms have used volatility targeting for decades on exactly these markets — the principle travels well, but the exact numbers are yours to prove.

Build and test it in TapeScript, step by step

TapeScript is built for this: describe the idea in plain English, and it writes tested, lookahead-free code, then runs the volatility and robustness analysis that proves whether the edge survives. Here is a clean plan you can copy.

  1. Create the base strategy. In the strategy chat, type: "Build a strategy on 1-hour MNQ: go long when the 50-EMA is above the 200-EMA, short when it is below, 20-point stop, 2R target, exit on the opposite cross." This gives you a plain trend base to manage.
  2. Add the volatility rule. Then type: "Only take trades when 20-bar realized volatility is below its 6-month median, and cut risk in half when volatility is in the top quarter of its range." TapeScript records this as a real filter, not a vibe.
  3. Classify and run the pipeline. Type: "Classify this and run the full pipeline." You get a baseline backtest with honest, no-lookahead numbers.
  4. Prove where the edge lives. Type: "Run a regime test and show me the volatility-bucket scorecard." This is the heart of the study — you will see, in real numbers, whether calm regimes really pay better than stormy ones on your market.
  5. Tune the threshold safely. Type: "Sweep the volatility threshold from the 30th to the 70th percentile and show the parameter heatmap." A flat, stable heatmap means the edge is real; a single lucky spike means you are curve-fitting.
  6. Stress it and spend the holdout. Type: "Run walk-forward and Monte-Carlo, then spend the untouched holdout." That is your honest final exam.
  7. Pressure-test for funding. Type: "Simulate this on Topstep and Apex and show my pass odds and trailing-drawdown near-misses."

Because volatility targeting is designed to smooth drawdowns, the payoff usually shows up in the Monte-Carlo and prop-firm results — steadier equity, fewer near-death dips, better pass odds. TapeScript shows you those before you risk a cent.

The bottom line

You cannot control whether the market is calm or wild. You can control how much you bet in each. A Journal of Finance study says getting that one thing right is worth more than most entry tweaks — and it is completely testable. TapeScript lets you build the rule, measure it by volatility regime, and see the smoother curve in hard numbers instead of hoping. Build your first volatility-managed strategy →

Citation: Moreira, A., & Muir, T. (2017). "Volatility-Managed Portfolios." The Journal of Finance, 72(4), 1611–1644. Free version on SSRN.

Frequently asked questions

What is volatility targeting in trading?

It is a position-sizing rule: you trade smaller when the market has recently been volatile and larger when it has been calm, so your risk stays roughly constant. A 2017 Journal of Finance study found this raised risk-adjusted returns across many strategies, mainly by avoiding losses in high-volatility periods.

Does volatility targeting work on futures and forex?

The core idea travels well — managed-futures firms have used it on futures and currencies for decades — but the original study was on stock indexes and factors, so you should re-test it on your specific market. In TapeScript you can add a volatility filter to any strategy and measure the result by volatility regime.

How do I calculate volatility for position sizing?

Use realized volatility: the standard deviation of recent returns, which is just the typical size of a recent price move. Then size positions as target volatility divided by recent volatility, with a sensible cap so you never over-leverage in calm periods.

Put your idea through the gauntlet →