FTQuant  0.1
LocalVolatility.hpp
Go to the documentation of this file.
1 
21 #ifndef FTQUANT_LOCALVOLATILITY_HPP
22 #define FTQUANT_LOCALVOLATILITY_HPP
23 #include <functional>
24 #include <vector>
25 
30  private:
31  double r;
32  std::function<double(double, double)> sigma;
33 
34  public:
36 
37  LocalVolatility(double r, std::function<double(double, double)>& sigma)
38  : r(r), sigma(sigma) {}
39 
40  int calibrate_dupire(std::vector<std::vector<double>>& w,
41  std::vector<double>& T, std::vector<double>& y,
42  double spot);
43  std::vector<std::vector<double>> generate_paths(int n_paths, double spot,
44  int steps, double T);
45 };
46 
47 #endif //FTQUANT_LOCALVOLATILITY_HPP
Implements the Dupire's local volatility model.
int calibrate_dupire(std::vector< std::vector< double >> &w, std::vector< double > &T, std::vector< double > &y, double spot)
LocalVolatility(double r, std::function< double(double, double)> &sigma)
std::vector< std::vector< double > > generate_paths(int n_paths, double spot, int steps, double T)