FTQuant
0.1
|
Implements the Black-Scholes model. More...
#include <BlackSholes.hpp>
Public Member Functions | |
BlackScholes () | |
BlackScholes (double r, double sigma) | |
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) |
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) |
Implements the Black-Scholes model.
Definition at line 32 of file BlackSholes.hpp.
|
inline |
Definition at line 38 of file BlackSholes.hpp.
|
inline |
Definition at line 40 of file BlackSholes.hpp.
void BlackScholes::calibrate | ( | std::vector< double > & | stock_prices | ) |
Definition at line 59 of file BlackSholes.cpp.
Referenced by Execution::execute().
std::vector< std::vector< double > > BlackScholes::generate_paths | ( | int | n_paths, |
int | steps, | ||
double | T, | ||
double | spot, | ||
bool | antithetic = true |
||
) |
Definition at line 7 of file BlackSholes.cpp.
Referenced by Execution::execute().
std::vector< std::vector< double > > BlackScholes::pde_pricer | ( | double | r, |
double | sigma, | ||
double | T, | ||
std::function< double(double)> | payoff, | ||
double | S_max, | ||
double | S_min, | ||
int | M, | ||
int | N | ||
) |
Definition at line 71 of file BlackSholes.cpp.
References thomas_algorithm().