Implementation of the Milstein Scheme + a Monte Carlo Engine
Opened this issue · 2 comments
Background
There are two traits in the Stochastics module, StochasticProcess
and StochasticVolatilityProcess
. The two traits utilise the Euler-Maruyama scheme through methods euler_maruyama()
and seedable_euler_maruyama()
to approximate solutions to stochastic differential equations (SDEs).
Feature requests
- Implement the Milstein method in the
StochasticProcess
andStochasticVolatilityProcess
traits as an alternative to the Euler-Maruyama scheme - Create a Monte-Carlo engine to utilise the numerical methods in
StochasticProcess
andStochasticVolatilityProcess
for an approximation of option prices
Mathematical context for the feature requests
Milstein Method
Take the SDE
where
with the initial condition
Monte Carlo Method for Option Pricing
The Monte-Carlo method provides the following approximation
for some stochastic process
We can simulate a numerical scheme
where
Sounds great :) Go ahead.
It would be good to implement using a payoff trait like:
trait PathDependentPayoff {
fn payoff(&self, path: &[f64]) -> f64;
}
That way each type of option can implement their respective payoffs and the Monte-Carlo engine can handle them all.
Note: start with StochasticProcess
first, I believe StochasticVolatilityProcess
needs work.
Edit: I have done a basic Monte-Carlo pricer trait, and impl'd it for a vanilla option here: https://github.com/avhz/RustQuant/blob/main/src/instruments/options/vanilla.rs
Hi, following up on this as I am doing a fair bit of re-working to the instruments module.
I will be using a Payoff trait of the form instead of my previous comment:
/// Generic payoff trait.
pub trait Payoff {
/// Underlying input type for the payoff function.
type Underlying;
/// Payoff function for the derivative.
fn payoff(&self, underlying: Self::Underlying) -> f64;
}
impl Payoff for VanillaOption {
type Underlying = f64;
fn payoff(&self, underlying: Self::Underlying) -> f64 {
...
}
}
impl Payoff for AsianOption {
type Underlying = Vec<f64>;
fn payoff(&self, underlying: Self::Underlying) -> f64 {
...
}
}