[Math] How to compute the quadratic variation of a compound poisson process

quadratic-variationstochastic-calculus

The jump diffusion model is defined as
$$dS_t = \mu S_t dt + \sigma S_t dW_t + S_t d \left(\sum^{N_t}_{i=1}(V_i – 1)\right)\;\;\;\;\;\;\;(1)$$
, where ${V_i}$ is a sequence of iid non-negative random variables and it is independent of $W_t$. In the Merton's jump diffusion model ,
$log(V) \sim N(\mu_J, \sigma^2_J)$ and $ N_t$ is a poisson process with rate $\lambda$.

I was asked to apply Ito lemma to $(d \;logS_t)$ to obtain the following:

$$S_t = S_0 exp \left( \left(\mu – \frac{\sigma^2}{2} \right)t + \sigma W_t\right) \prod^{N_t}_{j=1}V_j \;\;\;\;\;\;\;(2)$$

I literally do not know how to solve this problem because of the term $d \left(\sum^{N_t}_{i=1}(V_i – 1)\right)$. This is how far I got to:

$$dlogS_t = \frac{1}{S_t} \left( \mu S_t dt + \sigma S_t dW_t + S_t d \left(\sum^{N_t}_{i=1}(V_i – 1)\right)\right) – \frac{1}{2S_t^2} d[S,S]_t$$

What exactly is $d[S,S]_t$ ? I know that
$$d[S,S]_t = \sigma^2 S^2_t dt + …$$
But what is that "…" ?

Best Answer

I suspect that your SDE defining the $S_t$ process is problematic in the term "$S_t\text d\Big(\sum\limits_{i=1}^{N_t}(V_i-1)\Big)$". Intuitively, this term should capture instantaneous random jumps when they occur in any given realisation of the process. That is, if a jump occurs at time $t$, then the process jumps from $S_{t-}$ to $S_{t-}V_t$, where $S_{t-}$ is the left limit of the process at time $t$. So, it makes more sense for $S_t$ to be the jump-diffusion Levy process (so right-continuous, left-limit) defined by $$ \text dS_t = \mu S_{t-}\text dt + \sigma S_{t-}\text dW_t + \text d\Big(\sum\limits_{0\leqslant r\leqslant t}S_{r-}(V_r - 1){\bf 1}_{\{N_r-N_{r-}=1\}}\Big),\tag{1} $$

with jumps determined by a Compound Poisson process independent of $\{W_t\}_{t>0}$. That is, a Poisson process $\{N_t\}_{t>0}$ determines when jumps occur, and the size of such a jump at time $t$ is determined as $S_{t-}(V_t - 1)$ (where $\log V_t\sim\mathcal N(\mu_{J},\sigma^2_{J})\ $ for i.i.d. $V_t$).

Assuming $(1)$ for your SDE and $\mathbb E[\int_{0}^{T}S_{u-}^2\text du] < \infty$, Ito's lemma for jump-diffusion processes is applicable here. Note that, for a $\ C^{1,2}\ $ function $\ f:[0,T]\times\mathbb R\to\mathbb R$, the process $f(t,S_t)$ satisfies

$$ \begin{eqnarray*} f(t,S_t) - f(0,S_0) &=& \int_{0}^{t}(\partial_uf + \mu S_{u-}\partial_sf + \frac{1}{2}\sigma^2S_{u-}^2\partial_{ss}f)\text du \\ && + \sigma \int_{0}^{t}S_{u-}\partial_sf~\text dW_u + \sum_{0\leqslant r\leqslant t}(f(r,S_r)-f(r-,S_{r-})){\bf 1}_{\{N_{r}-N_{r-}=1\}}\,. \end{eqnarray*} $$

This is simply Ito's lemma for a diffusion process but, in addition, the final term adds the change in the process due to the jumps determined by the compound Poisson process. So, choosing $f(S_t):=\log S_t$ gives us

$$ \begin{eqnarray*} \log\Big(\frac{S_t}{S_0}\Big) &=& (\mu-\frac{1}{2}\sigma^2)t + \sigma W_t + \sum_{0\leqslant r\leqslant t}{\bf 1}_{\{N_{r}-N_{r-}=1\}}\log\Big(\frac{S_{r-}V_r}{S_{r-}}\Big) \\ &=&(\mu-\frac{1}{2}\sigma^2)t + \sigma W_t + \sum_{0\leqslant r\leqslant t}{\bf 1}_{\{N_{r}-N_{r-}=1\}}\log V_r\,. \end{eqnarray*} $$ Therefore, in your notation,

$$ S_t = S_0 e^{(\mu-\frac{1}{2}\sigma^2)t + \sigma W_t}\prod_{i=1}^{N_t}V_i\,. $$

Related Question