4

I am trying to understand how the shifted log-normal model works, in which we shift a log-normal model by a factor before the simulation so that interest rates don't turn negative during the simulation, and later adjust it back.

How can we be assured that this factor will make sure interest rates will never go negative during the simulation?

Daneel Olivaw
  • 8,069
  • 3
  • 23
  • 55
SaurabhD
  • 301
  • 1
  • 4
  • 9

1 Answers1

4

Let us assume we are interested in some (forward) rate $F_t=F(t,T)$ which we assume is log-normally distributed: $$\text{d}F_t=\sigma F_t\text{d}W_t$$ However, we observe market rates can in practice be negative. In order to circumvent this issue, we would like to use shifted log-normal dynamics: $$\sigma(F_t+s)\text{d}W_t$$ where $s>0$ is the shift. We therefore define the shifted rate $F_t^s=f(F_t)=F_t+s$, which has the same dynamics than $F_t$ (apply Itô's Lemma to $f(F_t)$): $$\text{d}F_t^s=\sigma F_t^s\text{d}W_t$$ Yet we know the solution to the above SDE: $$\begin{align} F_t^s&=F_0^s\exp\left\{-\frac{\sigma^2}{2}t+\sigma W_t\right\} \\ &=(F_0+s)\exp\left\{-\frac{\sigma^2}{2}t+\sigma W_t\right\} \end{align}$$ Thus if $s>|F_0|$ where $|\cdot|$ is the absolute value we ensure $F_t^s>0$ for all $t$. Note that we of course have that: $$\begin{align} F_t &= F_t^s-s \\ &= -s+(F_0+s)\exp\left\{-\frac{\sigma^2}{2}t+\sigma W_t\right\} \end{align}$$ So that we can recover the proper rate once the shifted rate has been simulated. In particular note that the forwards are preserved under the forward measure $\mathcal{T}$, that is: $$E^\mathcal{T}\left(F_t\right)=E^\mathcal{T}\left(F_t^s-s\right)$$

It is the shifted rate $F_t^s$ that will not turn negative, not the rate $F_t$ itself: after all the reason shifted log-normal models were introduced is because we were observing negative rates on the market. A shifted log-normal model allows to represent rates that can be negative while preserving the preexisting modeling infrastructure based on log-normal dynamics.

Daneel Olivaw
  • 8,069
  • 3
  • 23
  • 55
  • 1
    Would be cool to show how a caplet with a negative strike can be priced using the above (it's just the Black76 with the strike shifted by the same constant "$s$" that is used to shift the forward rate, whilst the spot is also shifted: might be nice to tie it into what you wrote for everyone to see the "full solution" in practice) :) – Jan Stuller Mar 16 '21 at 16:01
  • Daniel Olivaw: Sorry but your math is wrong. If $$dF(t)=\sigma(F(t)-\alpha)dW(t)$$ then $$F(t)=\alpha+(F(0)-\alpha)e^{-\frac{\sigma^2}{2}t+\sigma W(t)}$$ – user53197 Mar 16 '21 at 14:31
  • 1
    Hello @user53197. I think we’re looking at different things. You’re giving the solution to the base rate $F$, while I am looking at the shifted rate $F^s$ which per Ito’s Lemma has the dynamics specified in my post. You probably have a point in that my answer can lead to confusion though, I will try to review it. – Daneel Olivaw Mar 16 '21 at 15:19
  • @PearlTrivedi $s$ is chosen so that we have $s>|F_0|$. – Daneel Olivaw Jul 20 '22 at 23:07
  • Ok but what is this "s" taken as? Is it just an arbitary constant or does it depend on something? Can someone explain it with an example? – Pearl Trivedi Jul 20 '22 at 22:44