Internal Design of HWA Engine

Implementation

Zero Coupon Bond Price

The zero coupon bond price for Hull White One Factor Model is calculated using the following:

P(t,T)=A(t,T)eB(t,T)r(t)
B(t,T)=1e(Tt)a
lnA(t,T)=lnP(0,T)P(0,t)B(t,T)δlnP(0,t)δtσ24a2(eaTeat)2(e2at1)

These input parameters are:

a - the mean reversion

σ - the volatility

t - the current time

T- the maturity

r(t) - the short rate at time t

Equity Option Pricing

The price at time t of a European Call option with strike X, maturity T on a discount bond maturing at time S is given by:

ZBC(t,T,S,X)=P(t,S)θ(h)XP(t,T)θ(hσp)

The price at time t of a European Put option with strike X, maturity T on a discount bond maturing at time S is given by:

ZBP(t,T,S,X)=XP(t,T)θ(h+σp)P(t,T)θ(h)

The terms are derived from:

σp=σ1e2a(Tt)2aB(T,S)
h=1σpln(P(t,S)P(t,T)X)+σp2

Cap/Floor

ZBC & ZBP can be used to price caps & floors since they can be viewed as portfolios of zero-bond options:

Cap(t,T,N,X)=Nni=1[P(t,ti1)θ(hi+σip)(1+XTi)P(t,ti)θ(hi)]
Flr(t,T,N,X)=Nni=1[(1+XTi)P(t,ti)θ(hi)P(t,ti1)θ(hiσip)]

The terms are derived from:

σip=σ1e2a(ti1t)2aB(ti1,t)
hi=1σipln(P(t,ti)(1+XTi)P(t,ti1))+σip2

Implemention

The framework is split into host and kernel code.

Kernel

The kernel directory contains the 3 kernels based on the above formula:

  • HWA_K0.cpp contains the bond pricing engine
  • HWA_k1.cpp contains the option pricing engine
  • HWA_k2.cpp contains the cap/floor engine

Host

The host code (main.cpp) contains the OpenCL calls to invoke each of the kernels and test for accuracy compared to the CPU model (cpu.cpp).