19 #ifndef FTQUANT_BLACKSCHOLES_HPP
20 #define FTQUANT_BLACKSCHOLES_HPP
25 std::vector<double>& b, std::vector<double>& c,
26 std::vector<double>& f);
42 std::vector<std::vector<double>>
generate_paths(
int n_paths,
int steps,
43 double T,
double spot,
44 bool antithetic =
true);
45 void calibrate(std::vector<double>& stock_prices);
47 double r,
double sigma,
double T, std::function<
double(
double)> payoff,
48 double S_max,
double S_min,
int M,
int N);
void thomas_algorithm(std::vector< double > &v, std::vector< double > &a, std::vector< double > &b, std::vector< double > &c, std::vector< double > &f)
Implementation of Thomas algorithm for tridiagonal matrices.
Implements the Black-Scholes model.
BlackScholes(double r, double sigma)
std::vector< std::vector< double > > pde_pricer(double r, double sigma, double T, std::function< double(double)> payoff, double S_max, double S_min, int M, int N)
std::vector< std::vector< double > > generate_paths(int n_paths, int steps, double T, double spot, bool antithetic=true)
void calibrate(std::vector< double > &stock_prices)