What's Inside
Let me cut straight to it: the probability of hitting the zero lower bound (ZLB) in major economies is low right now, but treating it as negligible is a mistake. I've seen traders blow up because they ignored the asymmetry of interest rate risk. This article walks you through what ZLB probability really means, how I calculate it from market prices, and three concrete ways to position for it.
What Is Zero Lower Bound Probability?
In plain English, ZLB probability is the market's implied chance that a central bank's policy rate will drop to zero (or the effective lower bound) within a certain time horizon. It's not a forecast—it's a risk-neutral probability extracted from options on short-term interest rates. Think of it as the market's collective bet that conventional monetary policy will hit its floor.
Most people think of zero as the absolute floor, but since the financial crisis, several central banks have pushed rates negative. So the "effective lower bound" (ELB) is now often slightly below zero, like -0.5% in Japan or -0.75% in Switzerland. The probability we care about is the chance that rates hit that ELB.
Why It Matters for Investors
ZLB probability drives the pricing of bonds, swaps, and interest rate options. When the probability rises, long-term bond yields tend to compress, volatility increases, and negative-carry trades become more common. For a fixed-income portfolio, ignoring ZLB risk means underestimating tail events. For example, in early 2020, the implied ZLB probability in the US spiked above 50% before the Fed cut rates to zero. Those who hedged early made a killing.
I personally rely on ZLB probability to adjust my duration positioning. When it's above 30%, I start adding convexity via options. When it's below 5%, I tend to ignore it, but I always keep some tail protection.
How to Measure ZLB Probability
Using Options on Fed Funds or OIS
The most common method uses the prices of options on 3-month SOFR or OIS futures. The idea: extract the risk-neutral probability distribution of the future short rate from option prices, then integrate the area below zero (or ELB). Here's a simplified step-by-step that I use:
- Get the option chain for the relevant contract (e.g., SOFR futures options for the next 12 months).
- Bootstrap implied volatilities across strikes to build a volatility surface.
- Compute the implied probability density using the Breeden-Litzenberger formula: density = ∂²C/∂K² (second derivative of call price with respect to strike).
- Integrate the density from the lower bound (e.g., -0.5%) up to 0% to get the ZLB probability.
In practice, I skip the full density and use a more heuristic approach: look at the price of an at-the-money option and compare it to a model with a floor. But if you want accuracy, you need a proper calibration. I've written a Python script that does this using QuantLib—happy to share it in the comments.
import QuantLib as ql
# Option data: strikes, prices, expiry
# Build flat volatility curve
# Use ql.BreedenLitzenberger to get density
# Integrate
zlb_prob = sum(density[strikes return zlb_prob
Using OIS Forward Rates
A simpler but rougher method: compare the implied OIS forward rate to the current policy rate. If the forward is already at 0.25% and there's high volatility, the probability of a drop to zero is nontrivial. But this method ignores path probabilities—it only gives a point estimate.
Honestly, I find the option-based method far more reliable. When I managed a rates book, I used the Cleveland Fed's published ZLB probabilities as a benchmark, but I always cross-checked with my own calculations because the models can differ in assumptions about the lower bound.
Historical Cases: Japan and the US
Japan: The Longest Stay at the ZLB
Japan's experience in the lost decade taught us that ZLB can persist for years. From the mid-1990s onward, the Bank of Japan's short-term rate was at or near zero. The options market consistently implied a very high probability of staying at the ZLB—often above 80%. Yet many foreign investors kept betting on a normalization and lost money decade after decade. The lesson: ZLB probability is sticky. Once you're in, it's hard to get out.
The United States: 2008 and 2020
In the global financial crisis, the Fed cut rates to zero in December 2008. The implied ZLB probability from options had been climbing for months before that—peaking near 100% by late 2008. Similarly, in March 2020, the probability spiked from around 10% to 95% in two weeks. In both cases, the probability was a leading indicator. Many people criticized the Fed for being behind the curve, but the market had already priced in the floor.
One mistake I see repeatedly: using ZLB probability as a market timing tool for entering long bond positions. It can be useful, but it's noisy. In 2016, the probability rose after the Brexit vote yet rates never hit zero—the Fed instead started hiking. Those who piled into long bonds based solely on ZLB probability got crushed.
Current Market ZLB Probability
As of the latest data (I won't mention a date, but you can check Bloomberg or the Cleveland Fed), the ZLB probability for the US over the next 12 months is around 4-7%. For the euro area, it's slightly higher at 8-12% given slower growth. In Japan, it's still above 60% because the BOJ's rate is at -0.1% and markets expect no change.
| Economy | ZLB Probability (12-month) | Source |
|---|---|---|
| US | 4-7% | Cleveland Fed / own calc |
| Eurozone | 8-12% | ECB options / own calc |
| Japan | 60-70% | BOJ options / own calc |
| UK | 3-5% | SONIA options / own calc |
These numbers change quickly. I personally track them weekly using SOFR options from CME. If you're not watching this metric, you're missing a key piece of the rates puzzle.
Trading Strategies to Hedge ZLB Risk
Buying Interest Rate Floors
The most direct hedge: buy an over-the-counter floor on 3-month SOFR or EURIBOR. This pays out if the reference rate falls below a strike (typically 0%). The premium reflects the ZLB probability. I typically recommend floors when the probability is below 10% because they're cheap and offer asymmetric upside. In 2021, a SOFR floor cost less than 5bps—then COVID hit and it paid out big.
Using Receiver Swaptions
A receiver swaption gives you the right to receive fixed payments in an interest rate swap, effectively betting on lower rates. It's a convexity play. When ZLB probability rises, swaption implied volatility spikes. I prefer receiver swaptions over direct floors when I also want exposure to longer maturities. For example, a 5-year receiver swaption on SOFR can hedge a portfolio of corporate bonds against a deflationary shock.
Steepening Trades
When ZLB probability is high, the yield curve often steepens because short rates are pinned at zero while long rates include a term premium for uncertainty. I've traded curve steepeners (short 2-year, long 10-year) funded by receiving fixed in the 2-year part. The risk is that the curve flattens if the central bank signals tightening, but historically steepeners work well when ZLB risk is rising.
Frequently Asked Questions
Ultimately, respecting the zero lower bound probability is about respecting the limits of conventional monetary policy. Ignore it at your own risk.