14 #ifndef FTQUANT_LIBRARY_HPP
15 #define FTQUANT_LIBRARY_HPP
47 : result_code(result_code),
48 n_simulations(n_simulations),
52 [[nodiscard]] std::string
to_json()
const;
85 double absolute_error,
int steps,
double time,
86 double spot,
bool antithetic =
true,
87 double confidence_level = 0.95,
88 int num_simulations_per_round = 1000) {
90 const double t_critical = 1.96;
92 int n_simulations = 0;
98 double result_var = 0.;
105 n_simulations += num_simulations_per_round;
107 auto paths = model.generate_paths(num_simulations_per_round, steps, time,
109 for (
auto path : paths) {
110 double payoff_value = payoff(path.back());
112 sum2 += payoff_value * payoff_value;
115 auto mean = sum / num_simulations_per_round;
116 auto mean2 = sum2 / num_simulations_per_round;
117 auto sample_var = (mean2 - mean * mean);
120 ((n_iterations - 1) * result_var + sample_var) / (n_iterations);
121 result = (n_iterations * result + mean) / (n_iterations + 1);
123 error = t_critical * abs(result_var) / sqrt(n_simulations);
126 }
while (result_code !=
SUCCESS && n_simulations < 10000000);
128 return {result_code, n_simulations, error, result};
136 template <
typename T>
145 double absolute_error);
Contains the definition of the Black-Sholes model.
Contains the definition of the Dupire's local volatility model class.
A controller for derivatives pricing via a Monte-Carlo simulation.
MonteCarloPricer(T model)
MonteCarloResult estimate_price(std::function< double(double)> payoff, double absolute_error, int steps, double time, double spot, bool antithetic=true, double confidence_level=0.95, int num_simulations_per_round=1000)
A function that estimates the price of a given derivative via a Monte-Carlo simulation with a chosen ...
A container for storing the result of a Monte-Carlo simulation.
std::string to_json() const
A function that converts a MonteCarloResult to a JSON string.
MonteCarloResult(int result_code, int n_simulations, double error, double result)
A controller for derivatives pricing via a PDE solution.
PartialDiffEqPricer(T model)
double calculate_price(const std::function< double(double)> &payoff, double absolute_error)
const int ERROR_INVALID_INPUT
Error code for invalid input-related issues.
const int ERROR_MATHEMATICS
Error code for any mathematical errors.
const int ERROR_INVALID_MODEL
Error code for model-related issues.
const int SUCCESS
Success code.
const int ERROR_NO_CONVERGENCE
Error code for lack of convergence in simulations and other numerical estimations.