GaussMarkovProcess - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Finance

  

GaussMarkovProcess

  

create new Gauss-Markov short-rate process

 

Calling Sequence

Parameters

Options

Description

Examples

References

Compatibility

Calling Sequence

GaussMarkovProcess(r0, g, h, sigma, t, opts)

Parameters

r0

-

algebraic expression; initial value

g

-

algebraic expression, procedure, or yield term structure; coefficient in the SDE

h

-

algebraic expression, procedure, or yield term structure; coefficient in the SDE

sigma

-

algebraic expression, procedure, or yield term structure; the non-negative volatility

t

-

(optional) name; time variable

opts

-

(optional) equation(s) of the form option = value where option is scheme; specify options for the GaussMarkovProcess command

Options

• 

scheme = unbiased or Euler -- This option specifies which discretization scheme should be used for simulating the process. By default the standard Euler scheme is used. When scheme is set to unbiased the transition density will be used to simulate a value Xt+dt given Xt.

Description

• 

The GaussMarkovProcess command creates a linear Gauss-Markov stochastic process Xt, which is governed by the stochastic differential equation (SDE)

dXt=gt+htXtdt+σtdWt

  

The function gt is selected so that the model fits the initial term structure. The functions ht and σt are volatility parameters that are chosen to fit the market prices of a set of actively traded interest rate options.

• 

This process can be used to model short-term interest rates. This model - introduced by Hull and White (1990) - contains many popular term structure models as special cases.

 

Vasicek model:

gt, ht and σt are constant.

 

 

Ho-Lee model:

ht=0 and σt is constant.

 

 

Hull-White model:

ht and σt are constant.

 

• 

The parameter r0 defines the initial value of the underlying stochastic process.

• 

The parameters g, h, and sigma can each be either an algebraic expression, a procedure, or a yield term structure. If the process is to be simulated, it must be possible to evaluate these parameters to numeric values.

Examples

withFinance:

VGaussMarkovProcess0.5,0.2,1.0,0.3:

PathPlotVt,t=0..30,timesteps=100,replications=5,color=red..blue,thickness=3,axes=BOXED,gridlines=true

T2.0,5.0,10.0,30.0

T2.0,5.0,10.0,30.0

(1)

R0.04976,0.04970,0.05064,0.05143

R0.04976,0.04970,0.05064,0.05143

(2)

gCurveFitting:-SplineT,R,t,degree=1

g0.049800000000.00002000000000tt<5.00.04876000000+0.0001880000000tt<10.00.05024500000+0.00003950000000totherwise

(3)

RGaussMarkovProcess0.1&comma;g&comma;1.0&comma;0.3&comma;t

R_X1

(4)

PathPlotRt&comma;t=0..30&comma;timesteps=100&comma;replications=5&comma;color=red..blue&comma;thickness=3&comma;axes=BOXED&comma;gridlines=true

rates0.02&comma;0.01&comma;0.04&comma;0.06&comma;0.07&colon;

times0.&comma;0.5&comma;1.0&comma;1.5&comma;2.0&colon;

RZeroCurvetimes&comma;rates

Rmoduleend module

(5)

XGaussMarkovProcess0.02&comma;R&comma;1.0&comma;0.1

X_X2

(6)

PathPlotXt&comma;t=0..2&comma;timesteps=100&comma;replications=10&comma;axes=BOXED&comma;gridlines=true

rates0.02&comma;0.01&comma;0.04&comma;0.06&comma;0.07&colon;

times0.&comma;0.5&comma;1.0&comma;1.5&comma;2.0&colon;

RZeroCurvetimes&comma;rates

Rmoduleend module

(7)

YGaussMarkovProcess0.02&comma;R&comma;1.0&comma;0.1&comma;t&comma;scheme=unbiased

Y_X3

(8)

PathPlotYt&comma;t=0..2&comma;timesteps=100&comma;replications=10&comma;axes=BOXED&comma;gridlines=true

ExpectedValueY1&comma;replications=104

value=0.08445415108&comma;standarderror=0.001785016918

(9)

SampleValuesY1&comma;replications=104

Note that the overhead of computing the transition densities does not depend on the number of replications.

timeSamplePathYt&comma;t=0..2&comma;timesteps=100&comma;replications=10

1.272

(10)

timeSamplePathYt&comma;t=0..2&comma;timesteps=100&comma;replications=104

1.337

(11)

References

  

Brigo, D., Mercurio, F., Interest Rate Models: Theory and Practice. New York: Springer-Verlag, 2001.

  

Glasserman, P., Monte Carlo Methods in Financial Engineering. New York: Springer-Verlag, 2004.

  

Ho, T.S.Y, and Loo, S.-B., Term Structure Movements and Pricing Interest Rate Contingent Claims, Journal of Finance, 41 (1986), pp. 1011-29.

  

Hull, J., Options, Futures, and Other Derivatives, 5th. edition. Upper Saddle River, New Jersey: Prentice Hall, 2003.

  

Hull, J., and White, A., Pricing Interest Rate Derivative Securities, Review of Financial Studies, 3 (1990), pp. 573-92.

  

Vasicek, O.A., An Equilibrium Characterization of the Term Structure, Journal of Financial Economics, 5 (1977), pp. 177-88.

Compatibility

• 

The Finance[GaussMarkovProcess] command was introduced in Maple 15.

• 

For more information on Maple 15 changes, see Updates in Maple 15.

See Also

Finance[BlackScholesProcess]

Finance[BrownianMotion]

Finance[Diffusion]

Finance[Drift]

Finance[ExpectedValue]

Finance[GeometricBrownianMotion]

Finance[ItoProcess]

Finance[OrnsteinUhlenbeckProcess]

Finance[SamplePath]

Finance[SampleValues]

Finance[SquareRootDiffusion]

Finance[StochasticProcesses]

Finance[WienerProcess]