Finance
PathGenerator
create new path generator for a stochastic process
Calling Sequence
Parameters
Description
Examples
Compatibility
PathGenerator(process, timegrid)
PathGenerator(process, timeinterval, timesteps)
process
-
stochastic process; process for the path to be generated
timegrid
list, Vector, or time grid; time grid
timeinterval
range; length of simulation interval
timesteps
positive integer; number of time steps
The PathGenerator command creates a new path generator for the specified stochastic process. This command returns a module that can be used to simulate the underlying stochastic process as if it were a Maple procedure. Assume, for example, that the module returned by the PathGenerator command is assigned to the name T. Then for any positive integer n, T⁡n will return n replications of the sample path of the underlying process.
In the one-dimensional case, the value returned by T is a matrix of size m×n, where m is the requested number of replications of the sample path (see the replications option) and n is the number of points in the time grid (the number of time steps plus one). Each row of this matrix is a single realization of the sample path of the stochastic process of interest. In the multi-dimensional case, the value returned by T is a matrix of size m×d×n, where m and n are the same as in the one-dimensional case, and d is the dimension of the stochastic process to be simulated, which is either given explicitly or deduced from the dimension of the underlying stochastic process.
The module returned by the PathGenerator command can be passed to other commands such as Finance[SamplePath] or Finance[SampleValues] to simulate the underlying stochastic process.
The PathGenerator(process, timegrid) calling sequence creates a path generator for process based on the specified time grid.
The PathGenerator(process, timeinterval, timesteps) calling sequence constructs a path generator for process based on a uniform time grid on the interval timeinterval using the specified number of time steps. The parameter timeinterval must be of type range t0..t1, where t0 and t1 are non-negative real constants such that t0<t1. Note that if 0<t0, the value at t0 will be simulated using a single step of the default discretization method and hence can suffer from a significant discretization bias. Increasing the number of time steps will refine the grid between t0 and t1, but will have no effect on the value at t0. To reduce the bias, use a time interval of the form 0..t1.
with⁡Finance:
W1≔WienerProcess⁡:
P1≔PathGenerator⁡W1,0..3:
P1⁡5
0.−0.8302445832568310.1.358228689897330.−0.8668681761148390.−0.8505251060551960.0.411930790747278
P2≔PathGenerator⁡W1,0..3,10
P2 ≔ moduleoptionimplementation=External/0x7fc64b3121c0;exportprocess,timegrid,ModuleApply;end module
P2⁡5
Here is a path generator based on a non-homogeneous grid.
G≔0,0.3,0.5,0.7,1.0,seq⁡1.+i10,i=1..10
P3≔PathGenerator⁡W1,G
P3 ≔ moduleoptionimplementation=External/0x7fc64ae864d0;exportprocess,timegrid,ModuleApply;end module
PathPlot⁡P3⁡20,thickness=2,axes=BOXED
This is simulating a multi-dimensional process.
W2≔WienerProcess⁡1.0,0.5|0.5,1.0
W2≔_W0
P4≔PathGenerator⁡W2,0..3,3
P4 ≔ moduleoptionimplementation=External/0x7fc64ae7d620;exportprocess,timegrid,ModuleApply;end module
P4⁡5
This is creating a path generator for a Vector of one-dimensional processes.
W3≔PoissonProcess⁡0.5:
P5≔PathGenerator⁡W1,W3,0..3,20
P5 ≔ moduleoptionimplementation=External/0x7fc64ac5ce70;exportprocess,timegrid,ModuleApply;end module
P5⁡1
The Finance[PathGenerator] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
Finance[ExpectedShortfall]
Finance[ExpectedValue]
Finance[PathPlot]
Finance[SamplePath]
Finance[SampleValues]
Finance[TimeGrid]
Finance[ValueAtRisk]
Download Help Document