Finance
PathPlot
plot sample path(s) of a stochastic process
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
PathPlot(samplepath, opts)
PathPlot(samplepath, i, opts)
PathPlot(expression, t = timeinterval, opts)
PathPlot(pathgenerator, opts)
PathPlot(process, timegrid, opts)
PathPlot(process, timeinterval, opts)
PathPlot(transform, pathgenerator, opts)
samplepath
-
Array; array containing sample path(s) of a stochastic process
i
positive integer; coordinate of a multi-dimensional process to be plotted
expression
algebraic expression; expression whose sample path is to be generated
t
name; time variable for use in expression
timeinterval
range; time interval
pathgenerator
path generator data structure; path generator
process
one- or multi- dimensional stochastic process, or list or vector of one-dimensional stochastic processes
timegrid
list, Vector or time grid data structure; time grid
transform
procedure; path function
opts
(optional) equation(s) of the form option = value where option is one of timesteps, replications, color, markers, scale, or timegrid; specify options for the PathPlot command
replications = posint -- This option specifies the number of replications of the sample path. By default, only one replication of the sample path is generated. This option is invalid when an array containing sample path data is passed explicitly.
timesteps = posint -- This option specifies the number of time steps. This option is ignored if explicit time grid is specified. By default, only one time step is used. This option is invalid when an array containing sample path data is passed explicitly.
color = name, list, or range -- This option specifies colors for the individual paths. If a list of colors is given, each of the lines will be colored with the corresponding color in the list. If a range of colors is given, the colors will be generated by selecting an appropriate number of equally-spaced points in the corresponding hue range.
markers = true or false -- This option specifies whether PathPlot plots the individual points.
scale = absolute or relative -- This option controls whether the absolute or relative data scale is used. If scale is set to relative, all data samples are rescaled so that their range is an interval between -1 and 1.
timegrid = range or a time grid data structure -- This option specifies the time grid to be used.
The PathPlot command generates a line chart for the specified sample path(s).
The PathPlot(samplepath, opts) calling sequence plots data from samplepath as though it represents sample paths of a one-dimensional stochastic process. Each row of samplepath is taken as a single replication of the sample path.
The PathPlot(samplepath, i, opts) calling sequence plots data from samplepath as though it represents sample paths of a multi-dimensional stochastic process.
All the remaining calling sequences are closely related to the corresponding sequences for the SamplePath command. Essentially, they work as follows: the SamplePath command is called to generate an array containing sample paths for the underlying stochastic process. These sample paths are plotted using the procedure described above.
The PathPlot(expression, t = timeinterval, opts) calling sequence attempts to extract all the stochastic variables involved in expression and generate the corresponding path generator and path function using the time grid or the specified number of time steps. In this case, only a one-dimensional path can be generated. The parameter timeinterval must be of type range T0..T1, where T0 and T1 are non-negative 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. All stochastic variables involved in expression should be of the form X⁡t. If X is multi-dimensional stochastic, then the individual components of X can be accessed using the notation X⁡ti.
The PathPlot(pathgenerator, opts) calling sequence plots the specified number of replications of the sample path using the path generator pathgenerator. For more details, see Finance[PathGenerator].
The PathPlot(transform, pathgenerator, opts) calling sequence plots sample paths for a certain one-dimensional stochastic process given a path generator pathgenerator and a procedure transform that converts paths generated by pathgenerator to paths of the stochastic process of interest. Note that pathgenerator can be multi-dimensional.
Note that the final plot data structure is built using the plots[display] command; all unprocessed parameters are treated as plot options and will be passed to plots[display].
with⁡Finance:
W≔WienerProcess⁡:
Generate plots for a given data sample.
A≔SamplePath⁡W⁡t,t=0..3,timesteps=100,replications=10
PathPlot⁡A,axes=boxed,gridlines=true,markers=false,thickness=3,color=red..blue
PathPlot⁡A,timegrid=0..1,axes=boxed,gridlines=true,markers=false,thickness=3,color=red..blue
T≔TimeGrid⁡seq⁡1+i100,i=1..100
T ≔ moduleend module
PathPlot⁡A,timegrid=T,axes=boxed,gridlines=true
Display sample plots for a given stochastic process.
PathPlot⁡W⁡t,t=0..3,timesteps=100,replications=10,axes=boxed,thickness=3,color=red..blue
PathPlot⁡W⁡t,t=0..3,timesteps=100,replications=10,thickness=3,axes=boxed,gridlines=true
Generate sample paths for an expression involving stochastic variables.
PathPlot⁡exp⁡W⁡t,t=0..3,timesteps=100,replications=10,axes=boxed,thickness=3,color=red..blue
PathPlot⁡exp⁡W⁡t,t=0..3,timesteps=100,replications=10,thickness=3,axes=boxed,gridlines=true
The commands to create the plot from the Plotting Guide are as follows. They show examples involving a multi-variate stochastic process.
S0≔700
V0≔0.1
κ≔1.0
θ≔0.1
μ≔0.05
σ≔0.1
ρ≔0.5
S≔HestonProcess⁡S0,V0,μ,θ,κ,σ,ρ:
A≔SamplePath⁡S⁡t,t=0..3,timesteps=100,replications=5
These are sample paths for the state variables.
PathPlot⁡A,timegrid=0..3,1,thickness=3,color=red..blue,axes=boxed,gridlines=true
And these are the corresponding sample paths for the volatility.
PathPlot⁡A,timegrid=0..3,2,thickness=3,color=red..blue,axes=boxed,gridlines=true
The Finance[PathPlot] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
Finance[SamplePath]
Finance[SampleValues]
Finance[StochasticProcesses]
plot,options
Download Help Document