FTQuant  0.1
BlackSholes.hpp
Go to the documentation of this file.
1 
19 #ifndef FTQUANT_BLACKSCHOLES_HPP
20 #define FTQUANT_BLACKSCHOLES_HPP
21 #include <vector>
22 #include <functional>
23 
24 void thomas_algorithm(std::vector<double>& v, std::vector<double>& a,
25  std::vector<double>& b, std::vector<double>& c,
26  std::vector<double>& f);
27 
32 class BlackScholes {
33  private:
34  double r;
35  double sigma;
36 
37  public:
38  BlackScholes() : r(0.), sigma(1.) {}
39 
40  BlackScholes(double r, double sigma) : r(r), sigma(sigma) {}
41 
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);
46  std::vector<std::vector<double>> pde_pricer(
47  double r, double sigma, double T, std::function<double(double)> payoff,
48  double S_max, double S_min, int M, int N);
49 };
50 
51 #endif //FTQUANT_BLACKSCHOLES_HPP
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.
Definition: BlackSholes.hpp:32
BlackScholes(double r, double sigma)
Definition: BlackSholes.hpp:40
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)
Definition: BlackSholes.cpp:71
std::vector< std::vector< double > > generate_paths(int n_paths, int steps, double T, double spot, bool antithetic=true)
Definition: BlackSholes.cpp:7
void calibrate(std::vector< double > &stock_prices)
Definition: BlackSholes.cpp:59