1 #ifndef FTQUANT_SYNTAXPARSER_HPP
2 #define FTQUANT_SYNTAXPARSER_HPP
12 #include <string_view>
20 std::map<std::string, int> Fields{
24 {
"INTEREST_RATE", 0}, {
"TRAJECTORIES_NUMBER", 2},
25 {
"STEPS_NUMBER", 4}, {
"SIGMA", 6},
26 {
"FILE", 7}, {
"EXP_T", 8},
27 {
"SPOT_PRICE", 9}, {
"FILE_W", 10},
28 {
"FILE_T", 12}, {
"FILE_y", 13},
29 {
"STOCK_PRICE", 14}, {
"STRIKE_PRICE", 15},
30 {
"ERROR", 16}, {
"LOWER_BARRIER", 17},
38 std::map<std::string, int> Commands{{
"INVALID_COMMAND", -1},
40 {
"BLACK_SCHOLES_F", 1},
42 {
"GENERATE_TRAJECTORIES", 3},
46 {
"CALL_KNOCK_OUT", 7},
48 {
"CALL_KNOCK_IN", 9}};
59 GENERATE_TRAJECTORIES = 3,
73 std::vector<std::vector<std::string>> RequiredFields{
74 {
"INTEREST_RATE",
"SIGMA",
"EXP_T",
"SPOT_PRICE"},
75 {
"INTEREST_RATE",
"FILE"},
76 {
"FILE_w",
"FILE_T",
"FILE_y",
"SPOT_PRICE"},
77 {
"TRAJECTORIES_NUMBER",
"STEPS_NUMBER",
"EXP_T",
"SPOT_PRICE"},
78 {
"ERROR",
"STRIKE_PRICE",
"TRAJECTORIES_NUMBER",
"STEPS_NUMBER",
"EXP_T",
80 {
"ERROR",
"STRIKE_PRICE",
"TRAJECTORIES_NUMBER",
"STEPS_NUMBER",
"EXP_T",
82 {
"ERROR",
"STRIKE_PRICE",
"LOWER_BARRIER"},
83 {
"ERROR",
"STRIKE_PRICE",
"LOWER_BARRIER"},
84 {
"ERROR",
"STRIKE_PRICE",
"UPPER_BARRIER"},
85 {
"ERROR",
"STRIKE_PRICE",
"UPPER_BARRIER"}};
102 std::map<std::string, std::string> _key_numbers;
105 Command() : _code(Commands[
"INVALID_COMMAND"]) {}
118 int traj_generated = 0;
120 std::vector<std::vector<double>> traj;
121 std::vector<std::vector<double>> w;
122 std::vector<double> T;
123 std::vector<double> y;
bool is_double(const std::string &str)
@function is_double
Implements the Black-Scholes model.
Container for the commands Class contains the parsed command.
std::string to_json() const
friend std::ostream & operator<<(std::ostream &os, const Command &C)
Implements the Dupire's local volatility model.
The main header file for the FTQlib library.