Application Center - Maplesoft

App Preview:

Asian Options: Analytical Approach

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application


 

Image 

 

 

Asian Options : Analytical Approach 

 

Igor Hlivka 

MUFG Securities International, LONDON 

 

 

Asian options are special case of standard financial options where the option's payoff depends on an average value of an underlying asset over the contract's life. The rationale for Asian options comes from various motivations -  contrary to the standard option contract, the user may want / need an exposure to an average value of the underlying asset over the whole life of the contract rather than its terminal value.  

 

Asian options are transacted in various asset classes - the most common application can be found in the world of equities, foreign exchange or commodities.


Asian options come in two basic forms:
 

  • Fixed strike:                               v = LinearAlgebra:-Transpose(`+`(conjugate(S[t]), `-`(K)))
 

  • Floating strike                           v = LinearAlgebra:-Transpose(`+`(S[t], `-`(conjugate(S[t]))))
 


Average can be defined as
Arithmetic or Geometric and can be structured as Discrete or Continuous 

   

  • Arithmetic Discrete:                `/`(`*`(sum(S[t[i]], i = 1 .. n)), `*`(N))
 

  • Arithmetic Continuous:               `/`(1, `*`(T)) int(S[T], t = 0 .. T)
 

  • Geometric Discrete:                     product(`^`(S[t[i]], `/`(1, `*`(n))), i = 1 .. n)
 

  • Geometric Continuous:                  exp(`/`(`*`(int(ln(S[t]), t = 0 .. T)), `*`(T)))
 

 

Valuation of Asian options depends on the nature of the option. Discrete averages do not lead to a closed-form solution, and as such need to be valued numerically. Continuous Asian options naturally form a basis for analytical valuation, however, as we will see, not every continuous averaging returns a closed-form solution. 

 

Arithmetic Average Asian Options 

Let's define the arithmetic average of the stochastic process on the interval `<,>`(0 .. t) and let's assume that the process is the stock price: 

 

> restart; -1; `:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; `/`(`*`(int(St, t = 0 .. T)), `*`(T)); 1; `:=`(ArtmAvg, subs(W = `/`...
restart; -1; `:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; `/`(`*`(int(St, t = 0 .. T)), `*`(T)); 1; `:=`(ArtmAvg, subs(W = `/`...
restart; -1; `:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; `/`(`*`(int(St, t = 0 .. T)), `*`(T)); 1; `:=`(ArtmAvg, subs(W = `/`...
restart; -1; `:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; `/`(`*`(int(St, t = 0 .. T)), `*`(T)); 1; `:=`(ArtmAvg, subs(W = `/`...
 

 

 

`*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))
`+`(`-`(`/`(`*`(2, `*`(S0, `*`(`+`(exp(`*`(sigma, `*`(W))), `-`(exp(`+`(`*`(T, `*`(r)), `-`(`*`(`/`(1, 2), `*`(T, `*`(`^`(sigma, 2))))), `*`(sigma, `*`(W))))))))), `*`(`+`(`*`(2, `*`(r)), `-`(`*`(`^`(...
`+`(`-`(`/`(`*`(2, `*`(S0, `*`(`+`(exp(`/`(`*`(sigma, `*`(Int(W[t], t = 0 .. T))), `*`(T))), `-`(exp(`+`(`*`(T, `*`(r)), `-`(`*`(`/`(1, 2), `*`(T, `*`(`^`(sigma, 2))))), `/`(`*`(sigma, `*`(Int(W[t], t... (1.1)
 

We are interested in the distribution of ln(`/`(`*`(ArtmAvg), `*`(S0))) 

> expand(ln(`/`(`*`(ArtmAvg), `*`(S0)))); 1
 

`+`(ln(2), ln(`/`(`*`(`+`(`-`(exp(`/`(`*`(sigma, `*`(Int(W[t], t = 0 .. T))), `*`(T)))), exp(`+`(`*`(T, `*`(r)), `-`(`*`(`/`(1, 2), `*`(T, `*`(`^`(sigma, 2))))), `/`(`*`(sigma, `*`(Int(W[t], t = 0 .. ... (1.2)
 

As we can see, the distribution of an arithmetic average of the stock price over the period `<,>`(0 .. T)does not possess analytical tractability, and as such closed-form solution does not exist. Market practitioners have devised various approaches to overcome this problem (approximation / numerical techniques), however they are outside the scope of this demonstration.

Arithmetic averages tend to be valued numerically using Monte Carlo simulation and the interested reader can look for details at the Maplesoft Application Demonstration - "
Asian Options" from the Financial Modeling Toolbox 

 

Since arithmetic average of a log-normal process is not well defined, we will concentrate on Geometric continuous average case where closed-formed solution exists.  

Fixed Strike 

Let's define the stochastic process for the financial security (stock price , FX rate etc.) 

  • St       terminal value of the financial security
 

  • r         risk-free rate
 

  • sigma        volatility of St
 

  • t         time to maturity
 

  • W       stochastic Wiener process      W~N(0, t)
 

  • Gt      Geometric average defined according to the formula above
 

 

> restart; -1; with(IntegrationTools); -1
 

> `:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; simplify(exp(`/`(`*`(int(ln(St), t = 0 .. T)), `*`(T))), symbolic); -1; `:=`(Gt, ...
`:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; simplify(exp(`/`(`*`(int(ln(St), t = 0 .. T)), `*`(T))), symbolic); -1; `:=`(Gt, ...
`:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; simplify(exp(`/`(`*`(int(ln(St), t = 0 .. T)), `*`(T))), symbolic); -1; `:=`(Gt, ...
`:=`(St, `*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))); 1; simplify(exp(`/`(`*`(int(ln(St), t = 0 .. T)), `*`(T))), symbolic); -1; `:=`(Gt, ...
 

 

`*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(W))))))
`*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))), `-`(`*`(`/`(1, 4), `*`(T, `*`(`^`(sigma, 2))))), `/`(`*`(sigma, `*`(Int(W[t], t = 0 .. T))), `*`(T)))))) (2.1)
 

We need to resolve the handling of the stochastic path above:     

Apply first the integration by parts first: 

> Parts(Int(W(t), t = 0 .. T), W(t), t); 1
 

`+`(`*`(T, `*`(W(T))), `-`(Int(`*`(t, `*`(diff(W(t), t))), t = 0 .. T))) (2.2)
 

We can revert the integration and simplify the expression:    int(W(t), t = o .. T) = int(`+`(T, `-`(t)), W[t] = 0 .. T) 

From the properties of stochastic integral and Ito we can see that: 

  • [
 

  • [
 

Let's compute the variance of the stochastic integral 

> `:=`(StochVar, int(`*`(`^`(`+`(T, `-`(t)), 2)), t = 0 .. T)); 1
 

`+`(`*`(`/`(1, 3), `*`(`^`(T, 3)))) (2.3)
 

This shows that `*`(int(W(t), t = o .. T), `*`(`~`, `*`(N(0, `*`(sigma, `*`(sqrt(`+`(`*`(`/`(1, 3), `*`(`^`(T, 3))))))))))) 

From here we can establish that the logarithm of the average price return is normally distributed with parameters: 

`*`(ln(`/`(`*`(Gt), `*`(G0))), `*`(`~`, `*`(N(`+`(`*`(`/`(1, 2), `*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)))), `/`(`*`(sigma, `*`(sqrt(`+`(`*`(`/`(1, 3), `*`(`^`(t, 3))))))), `*`(T))... 

 

> `:=`(Gt2, simplify(subs(Int(W[t], t = 0 .. T) = `*`(sqrt(`+`(`*`(`/`(1, 3), `*`(`^`(T, 3))))), `*`(y)), Gt), symbolic)); 1
 

`*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))), `-`(`*`(`/`(1, 4), `*`(T, `*`(`^`(sigma, 2))))), `*`(`/`(1, 3), `*`(sigma, `*`(`^`(3, `/`(1, 2)), `*`(`^`(T, `/`(1, 2)), `*`(y))))))))) (2.4)
 

This is essentially an adapted stochastic process similar to the one we defined for the and hence options can be derived analytically. It differs from the standard process by the drift and volatility. 

 

When the stock price pay the dividend at a continuous dividend yield we need to determine the correct drift for the averaging process: 

 

> `:=`(SigGt, simplify(`/`(`*`(sigma, `*`(sqrt(`+`(`*`(`/`(1, 3), `*`(`^`(t, 3))))))), `*`(t, `*`(sqrt(t)))), symbolic)); 1; `:=`(QDrift, `+`(r, `-`(q), `-`(`*`(`/`(1, 2), `*`(`^`(SigGt, 2)))))); 1; `:=...
 

 

 

`+`(`*`(`/`(1, 3), `*`(sigma, `*`(`^`(3, `/`(1, 2))))))
`+`(r, `-`(q), `-`(`*`(`/`(1, 6), `*`(`^`(sigma, 2)))))
`+`(`*`(`/`(1, 2), `*`(r)), `-`(`*`(`/`(1, 4), `*`(`^`(sigma, 2))))) (2.5)
 

We need to solve for q to find the dividend adjustment 

> `:=`(q, solve(QDrift = GDrift, q)); 1
 

`+`(`*`(`/`(1, 2), `*`(r)), `*`(`/`(1, 12), `*`(`^`(sigma, 2)))) (2.6)
 

We can now value the fixed-strike Geometric Average Asian Options: 

  • Call Option:     LinearAlgebra:-Transpose(`+`(conjugate(S[t]), `-`(K)))
 

  • Put Option:      LinearAlgebra:-Transpose(`+`(K, `-`(conjugate(S[t]))))
 

 

The geometric average process for the stock price St will now take the form: 

> `:=`(Gt3, `*`(S0, `*`(exp(`+`(`*`(QDrift, `*`(t)), `*`(SigGt, `*`(sqrt(t), `*`(y)))))))); 1
 

`*`(S0, `*`(exp(`+`(`*`(`+`(`*`(`/`(1, 2), `*`(r)), `-`(`*`(`/`(1, 4), `*`(`^`(sigma, 2))))), `*`(t)), `*`(`/`(1, 3), `*`(sigma, `*`(`^`(3, `/`(1, 2)), `*`(`^`(t, `/`(1, 2)), `*`(y))))))))) (2.7)
 

This is a lognormal process with adapted drift and volatility. To value an option, we will: 

  • determine the integration limits
 

  • discount the integrated option's payoff
 

> `:=`(crtval, solve(Gt3 = K, y)); 1
 

`+`(`/`(`*`(`/`(1, 4), `*`(`+`(`-`(`*`(2, `*`(t, `*`(r)))), `*`(t, `*`(`^`(sigma, 2))), `*`(4, `*`(ln(`/`(`*`(K), `*`(S0)))))), `*`(`^`(3, `/`(1, 2))))), `*`(sigma, `*`(`^`(t, `/`(1, 2)))))) (2.8)
 

> `:=`(AsFxCallOpt, `assuming`([`*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(`+`(Gt3, `-`(K)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = crtval .. ...
`:=`(AsFxCallOpt, `assuming`([`*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(`+`(Gt3, `-`(K)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = crtval .. ...
 

`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24), `*`(`^`(2, `/`(1, 2)), `*`(`^`(3, `/`(1, 2))...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24), `*`(`^`(2, `/`(1, 2)), `*`(`^`(3, `/`(1, 2))...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24), `*`(`^`(2, `/`(1, 2)), `*`(`^`(3, `/`(1, 2))...
(2.9)
 

> `:=`(AsFxPutOpt, `assuming`([`*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(`+`(K, `-`(Gt3)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = `+`(`-`(inf...
`:=`(AsFxPutOpt, `assuming`([`*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(`+`(K, `-`(Gt3)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = `+`(`-`(inf...
 

`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`*`(K, `*`(exp(`+`(`*`(`/`(1, 12), `*`(t, `*`(`^`(sigma, 2))))))))), `*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))))), `*`(K...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`*`(K, `*`(exp(`+`(`*`(`/`(1, 12), `*`(t, `*`(`^`(sigma, 2))))))))), `*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))))), `*`(K...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`*`(K, `*`(exp(`+`(`*`(`/`(1, 12), `*`(t, `*`(`^`(sigma, 2))))))))), `*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))))), `*`(K...
(2.10)
 

Analytical solution allows sensitivities to be computed symbolically: 

Eg: Asian Call Option Gamma = second derivative of the option premium w.r.t stock price: 

 

> `:=`(AsFxGamma, diff(AsFxCallOpt, S0, S0)); 1
 

`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`/`(`*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(exp(`+`(`-`(`/`(`*`(`/`(1, 96), `*`(`^`(`+`(`*`(6, `*`(t, `*`(r))), `*`(t, `...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`/`(`*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(exp(`+`(`-`(`/`(`*`(`/`(1, 96), `*`(`^`(`+`(`*`(6, `*`(t, `*`(r))), `*`(t, `...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`/`(`*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(exp(`+`(`-`(`/`(`*`(`/`(1, 96), `*`(`^`(`+`(`*`(6, `*`(t, `*`(r))), `*`(t, `...
`+`(`-`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(`+`(`-`(`/`(`*`(exp(`+`(`*`(`/`(1, 2), `*`(t, `*`(r))))), `*`(exp(`+`(`-`(`/`(`*`(`/`(1, 96), `*`(`^`(`+`(`*`(6, `*`(t, `*`(r))), `*`(t, `...
(2.11)
 

> with(plots); -1; animate(plot3d, [eval(`*`(A, `*`(AsFxGamma)), [r = 0.5e-1, K = 10, t = 5]), S0 = 5 .. 15, sigma = 0.5e-1 .. .3, title = [
with(plots); -1; animate(plot3d, [eval(`*`(A, `*`(AsFxGamma)), [r = 0.5e-1, K = 10, t = 5]), S0 = 5 .. 15, sigma = 0.5e-1 .. .3, title = [
with(plots); -1; animate(plot3d, [eval(`*`(A, `*`(AsFxGamma)), [r = 0.5e-1, K = 10, t = 5]), S0 = 5 .. 15, sigma = 0.5e-1 .. .3, title = [
 

Plot
 

As chart above shows, Option's Gamma is the highest when security price (S0) is close to the strike (K) and is the most sensitive when the volatility drops to low level. 

>
 

Asian options are cheaper than standard ones as averaging tends to smooth down excessive spikes in the stochastic path. As such, they are more attractive tool for corporate treasurers and risk managers alike when they design cost-efficient hedging programmes. We can compare the premiums for the Standard and Asian Calls: 

 

> `:=`(St2, subs(W = `*`(sqrt(t), `*`(y)), St)); -1; `:=`(StCallOpt, `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(max(`+`(St2, `-`(K)), 0), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`...
`:=`(St2, subs(W = `*`(sqrt(t), `*`(y)), St)); -1; `:=`(StCallOpt, `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(max(`+`(St2, `-`(K)), 0), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`...
`:=`(St2, subs(W = `*`(sqrt(t), `*`(y)), St)); -1; `:=`(StCallOpt, `*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`/`(`*`(max(`+`(St2, `-`(K)), 0), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`...
 

`*`(exp(`+`(`-`(`*`(t, `*`(r))))), `*`(int(`+`(`/`(`*`(`/`(1, 2), `*`(max(0, `+`(`*`(S0, `*`(exp(`+`(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(t)), `*`(sigma, `*`(`^`(t, `/`(1, 2)), `*`... (2.12)
 

> `:=`(SCall, evalf(eval(StCallOpt, [S0 = 10, K = 10, t = 3, sigma = .25, r = 0.5e-1]))); 1; `:=`(ACall, evalf(eval(AsFxCallOpt, [S0 = 10, K = 10, t = 3, sigma = .25, r = 0.5e-1]))); 1
`:=`(SCall, evalf(eval(StCallOpt, [S0 = 10, K = 10, t = 3, sigma = .25, r = 0.5e-1]))); 1; `:=`(ACall, evalf(eval(AsFxCallOpt, [S0 = 10, K = 10, t = 3, sigma = .25, r = 0.5e-1]))); 1
 

 

2.384198424
1.170282949 (2.13)
 

Since Asian options have lower drift and lower volatility, the premium is naturally lower. 

 

Floating Strike 

 

We will use here the findings and results derived in the previous section. 

 

Floating strike Asian option (floating = Average price) changes the option definition in terms of process specification:  v = LinearAlgebra:-Transpose(`+`(S[t], `-`(conjugate(S[t]))))is an option involving two stochastic process: (i) standard process:  St  and (ii) average process:  conjugate(St). In essence, the Floating strike Asian Options are sort of multi-factor options.  

 

In order to value this type of option, we need to specify the dependency structure between these two stochastic processes: 

 

Two stochastic variables X[1], X[2] will have their correlation defined as:     Corr(X[1], X[2]) = `/`(`*`(CoVar(X[1], X[2])), `*`(sqrt(`*`(Var(X[1]), `*`(Var(X[2])))))) 

> `:=`(VarSt, `*`(`^`(sigma, 2))); 1; `:=`(VarGt, `+`(`*`(`/`(1, 3), `*`(`^`(sigma, 2))))); 1
 

 

`*`(`^`(sigma, 2))
`+`(`*`(`/`(1, 3), `*`(`^`(sigma, 2)))) (3.1)
 

We need to define the covariance term:   CoVar(X[1], X[2]) = `𝔼`[`*`(`*`(`+`(`*`(`/`(1, 3), `*`(sigma, `*`(W[St], `*`(sqrt(3)))))), sigma), `*`(W[Gt]))] 

This can be achieved in two steps:  

  • rewriting the expectation term `𝔼`[`*`(`*`(`+`(`*`(`/`(1, 3), `*`(sigma, `*`(W[St], `*`(sqrt(3)))))), sigma), `*`(W[Gt]))] = `/`(`*`(`^`(sigma, 2), `*`(int(`𝔼`[`*`(W[t], `*`(W[T]))], t = 0 .. T))), `*`(T))
 

  • specifying the product expectation of two Wiener stochastic processes:     `𝔼`[W[s], W[t]] = min(s, t)which implies that:
    `𝔼`[`*`(W[t], `*`(W[T]))] = t
 

> `:=`(CoVar, `/`(`*`(`^`(sigma, 2), `*`(int(t, t = 0 .. T))), `*`(T))); 1; `:=`(Corr, simplify(`/`(`*`(CoVar), `*`(sqrt(`*`(VarSt, `*`(VarGt, `*`(`^`(T, 2))))))), symbolic)); 1
 

 

`+`(`*`(`/`(1, 2), `*`(T, `*`(`^`(sigma, 2)))))
`+`(`*`(`/`(1, 2), `*`(`^`(3, `/`(1, 2))))) (3.2)
 

Now we are in the position to define the volatility of the bi-variate process: 

  • we note that   LinearAlgebra:-Transpose(`+`(St, `-`(Gt))) = `*`(G[0], `*`(`𝔼`, `*`(LinearAlgebra:-Transpose([`+`(`/`(`*`(St), `*`(Gt)), `-`(1))])))) which implies that the standard deviation of : `/`(`*`(St), `*`(Gt)) = sqrt(`+`(`*`(`^`(sigma[St], 2)), `*`(`^`(sigma[Gt], 2)), `-`(`*`(2, `*`(rho, `*`(sigma[St], `*`(sigma[Gt])))))))
 

> `:=`(omega, simplify(sqrt(`+`(VarSt, VarGt, `-`(`*`(2, `*`(Corr, `*`(sqrt(VarSt), `*`(sqrt(VarGt)))))))), symbolic)); 1
 

`+`(`*`(`/`(1, 3), `*`(sigma, `*`(`^`(3, `/`(1, 2)))))) (3.3)
 

What is the drift of  the ratio of two processes?  We need to consider two cases:(i) Call drift `/`(`*`(St), `*`(Gt)) and (ii) Put drift `/`(`*`(Gt), `*`(St))
 

> `:=`(DriftC, subs(sigma = omega, simplify(`*`(`*`(S0, `*`(exp(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(T))))), `/`(1, `*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))), `-`(`*`(`/`(1,...
`:=`(DriftC, subs(sigma = omega, simplify(`*`(`*`(S0, `*`(exp(`*`(`+`(r, `-`(`*`(`/`(1, 2), `*`(`^`(sigma, 2))))), `*`(T))))), `/`(1, `*`(S0, `*`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))), `-`(`*`(`/`(1,...
 

 

exp(`+`(`*`(`/`(1, 4), `*`(`+`(`*`(2, `*`(r)), `-`(`*`(`/`(1, 3), `*`(`^`(sigma, 2))))), `*`(T)))))
exp(`+`(`-`(`*`(`/`(1, 4), `*`(`+`(`*`(2, `*`(r)), `-`(`*`(`/`(1, 3), `*`(`^`(sigma, 2))))), `*`(T)))))) (3.4)
 

This shows that in case of Call Option    `*`(ln(`/`(`*`(St), `*`(Gt))), `*`(`~`, `*`(N(`+`(`*`(`/`(1, 4), `*`(`+`(`*`(2, `*`(r)), `-`(`*`(`/`(1, 3), `*`(`^`(sigma, 2))))), `*`(T)))), sqrt(`+`(`*`(`/`(1, 3), `*`(`^`(sigma, 2)))))))))
and in case of Put Option                      ln(`/`(`*`(Gt), `*`(St)))    ~  N(`+`(`-`(`*`(`/`(1, 4), `*`(`+`(`*`(2, `*`(r)), `-`(`*`(`/`(1, 3), `*`(`^`(sigma, 2))))), `*`(T))))), sqrt(`+`(`*`(`/`(1, 3), `*`(`^`(sigma, 2))))))
This will allow us valuing these options in a standard way:
 

  • Defining the "ratio" process for Call Option:
 

> `:=`(XT, simplify(`*`(DriftC, `*`(exp(`*`(omega, `*`(y, `*`(sqrt(T))))))), symbolic)); 1
 

exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))), `-`(`*`(`/`(1, 12), `*`(T, `*`(`^`(sigma, 2))))), `*`(`/`(1, 3), `*`(sigma, `*`(`^`(3, `/`(1, 2)), `*`(`^`(T, `/`(1, 2)), `*`(y))))))) (3.5)
 

  • Defining the same "ratio" for Put Option:
 

> `:=`(YT, simplify(`*`(DriftP, `*`(exp(`*`(omega, `*`(y, `*`(sqrt(T))))))), symbolic)); 1
 

exp(`+`(`-`(`*`(`/`(1, 2), `*`(T, `*`(r)))), `*`(`/`(1, 12), `*`(T, `*`(`^`(sigma, 2)))), `*`(`/`(1, 3), `*`(sigma, `*`(`^`(3, `/`(1, 2)), `*`(`^`(T, `/`(1, 2)), `*`(y))))))) (3.6)
 

We will calculate the option premium in three steps: 

  • Determine the integration limits that satisfy each option payoff
 

  • Specify the option payoff with the "theoretical" fixed strike  = K
 

  • Value the option with the "actual" strike = 1        Eg:  Call = `+`(`/`(`*`(St), `*`(Gt)), `-`(eval(K, K = 1)))
 

> `:=`(crvalcall, solve(XT = K, y)); 1; `:=`(crvalput, solve(YT = K, y)); 1
 

 

`+`(`/`(`*`(`/`(1, 12), `*`(`+`(`-`(`*`(6, `*`(T, `*`(r)))), `*`(T, `*`(`^`(sigma, 2))), `*`(12, `*`(ln(K)))), `*`(`^`(3, `/`(1, 2))))), `*`(sigma, `*`(`^`(T, `/`(1, 2))))))
`+`(`/`(`*`(`/`(1, 12), `*`(`+`(`*`(6, `*`(T, `*`(r))), `-`(`*`(T, `*`(`^`(sigma, 2)))), `*`(12, `*`(ln(K)))), `*`(`^`(3, `/`(1, 2))))), `*`(sigma, `*`(`^`(T, `/`(1, 2)))))) (3.7)
 

> `:=`(intcall, `assuming`([`*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(int(`/`(`*`(`+`(XT, `-`(K)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = crvalca...
`:=`(intcall, `assuming`([`*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(int(`/`(`*`(`+`(XT, `-`(K)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = crvalca...
 

`*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(`+`(`-`(`*`(`/`(1, 2), `*`(erf(`+`(`/`(`*`(`/`(1, 8), `*`(`^`(2, `/`(1, 2)), `*`(`^`(3, `/`(1, 2)), `*`(`+`(`-`(`*`(2, `*`(T, `*`(r)))), `-`(`*`(T, `*`(`...
`*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(`+`(`-`(`*`(`/`(1, 2), `*`(erf(`+`(`/`(`*`(`/`(1, 8), `*`(`^`(2, `/`(1, 2)), `*`(`^`(3, `/`(1, 2)), `*`(`+`(`-`(`*`(2, `*`(T, `*`(r)))), `-`(`*`(T, `*`(`...
(3.8)
 

> `:=`(intput, `assuming`([`*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(int(`/`(`*`(`+`(K, `-`(YT)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = `+`(`-`(...
`:=`(intput, `assuming`([`*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(int(`/`(`*`(`+`(K, `-`(YT)), `*`(exp(`+`(`-`(`*`(`/`(1, 2), `*`(`^`(y, 2)))))))), `*`(sqrt(`+`(`*`(2, `*`(Pi)))))), y = `+`(`-`(...
 

`+`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(`+`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))))), `-`(exp(`+`(`*`(`/`(1, 4), `*`(T, `*`(`^`(sigma, 2))))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24...
`+`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(`+`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))))), `-`(exp(`+`(`*`(`/`(1, 4), `*`(T, `*`(`^`(sigma, 2))))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24...
(3.9)
 

> `:=`(CallValue, evalf(eval(AsFtCallOpt, [S0 = 10, T = 3, sigma = .25, r = 0.5e-1]))); 1; `:=`(PutValue, evalf(eval(AsFtPutOpt, [S0 = 10, T = 3, sigma = .25, r = 0.5e-1]))); 1
`:=`(CallValue, evalf(eval(AsFtCallOpt, [S0 = 10, T = 3, sigma = .25, r = 0.5e-1]))); 1; `:=`(PutValue, evalf(eval(AsFtPutOpt, [S0 = 10, T = 3, sigma = .25, r = 0.5e-1]))); 1
 

 

1.362971360
.9689891762 (3.10)
 

Again, we can ask Maple to calculate option's sensitivities: 

  • Let's compute option's delta (derivative w.r.t underlying stock price)
 

> `:=`(`PutΔ`, diff(AsFtPutOpt, S0)); 1; plots[animate](plot3d, [eval(`PutΔ`, [r = 0.5e-1]), T = 0 .. A, sigma = 0.5e-1 .. `+`(`*`(.1, `*`(A))), axes =
`:=`(`PutΔ`, diff(AsFtPutOpt, S0)); 1; plots[animate](plot3d, [eval(`PutΔ`, [r = 0.5e-1]), T = 0 .. A, sigma = 0.5e-1 .. `+`(`*`(.1, `*`(A))), axes =
`:=`(`PutΔ`, diff(AsFtPutOpt, S0)); 1; plots[animate](plot3d, [eval(`PutΔ`, [r = 0.5e-1]), T = 0 .. A, sigma = 0.5e-1 .. `+`(`*`(.1, `*`(A))), axes =
 

 

`+`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(`+`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))))), `-`(exp(`+`(`*`(`/`(1, 4), `*`(T, `*`(`^`(sigma, 2))))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24), `*`(`...
`+`(`*`(`/`(1, 2), `*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(`+`(exp(`+`(`*`(`/`(1, 2), `*`(T, `*`(r))))), `-`(exp(`+`(`*`(`/`(1, 4), `*`(T, `*`(`^`(sigma, 2))))))), `*`(erf(`+`(`/`(`*`(`/`(1, 24), `*`(`...
Plot
 

> `:=`(CallVega, simplify(diff(AsFtCallOpt, sigma))); 1
 

`+`(`/`(`*`(`/`(1, 12), `*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(`^`(T, `/`(1, 2)), `*`(`+`(`*`(2, `*`(exp(`+`(`-`(`/`(`*`(`/`(1, 96), `*`(`^`(`+`(`*`(6, `*`(r)), `-`(`*`(`^`(sigma, 2)))), 2), `...
`+`(`/`(`*`(`/`(1, 12), `*`(exp(`+`(`-`(`*`(T, `*`(r))))), `*`(S0, `*`(`^`(T, `/`(1, 2)), `*`(`+`(`*`(2, `*`(exp(`+`(`-`(`/`(`*`(`/`(1, 96), `*`(`^`(`+`(`*`(6, `*`(r)), `-`(`*`(`^`(sigma, 2)))), 2), `...
(3.11)
 

> plot3d(eval(CallVega, [S0 = 10, r = 0.5e-1]), T = 0 .. 5, sigma = 0.5e-1 .. .3, title = [
plot3d(eval(CallVega, [S0 = 10, r = 0.5e-1]), T = 0 .. 5, sigma = 0.5e-1 .. .3, title = [
 

Plot
 

>
 

 

Conclusion 

This application demonstration presents an alternative analytical method for handling averages of a stochastic process on a given time interval. Although the application looks at the particular case of stock price, any lognormal dynamics can be easily adapted to be valued in this close-form environment. 

 

We show that the valuation of averages (both with fixed and floating strikes) relies on symbolic manipulation of process parameters where Maple analytics comes in particularly helpful.  

 

Legal Notice: The copyright for this application is owned by the author(s). Neither Maplesoft nor the author are responsible for any errors contained within and are not liable for any damages resulting from the use of this material.. This application is intended for non-commercial, non-profit use only. Contact the author for permission if you wish to use this application in for-profit activities.