FTQuant  0.1
SyntaxParser.hpp
Go to the documentation of this file.
1 #ifndef FTQUANT_SYNTAXPARSER_HPP
2 #define FTQUANT_SYNTAXPARSER_HPP
3 
4 #include <ftqlib.hpp>
5 
6 #include <algorithm>
7 #include <fstream>
8 #include <iostream>
9 #include <map>
10 #include <sstream>
11 #include <string>
12 #include <string_view>
13 #include <vector>
14 
15 namespace {
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},
31  {"UPPER_BARRIER", 18}
32  // {"ANTITHETIC", 10}
33 };
34 
38 std::map<std::string, int> Commands{{"INVALID_COMMAND", -1},
39  {"BLACK_SCHOLES", 0},
40  {"BLACK_SCHOLES_F", 1},
41  {"LOCVOL", 2},
42  {"GENERATE_TRAJECTORIES", 3},
43  {"EURO_PUT", 4},
44  {"EURO_CALL", 5},
45  {"PUT_KNOCK_OUT", 6},
46  {"CALL_KNOCK_OUT", 7},
47  {"PUT_KNOCK_IN", 8},
48  {"CALL_KNOCK_IN", 9}};
49 
54 enum Codes {
55  INVALID_COMMAND = -1,
56  BLACK_SCHOLES = 0,
57  BLACK_SCHOLES_F = 1,
58  LOCVOL = 2,
59  GENERATE_TRAJECTORIES = 3,
60  EURO_PUT = 4,
61  EURO_CALL = 5,
62  PUT_KNOCK_OUT = 6,
63  CALL_KNOCK_OUT = 7,
64  PUT_KNOCK_IN = 8,
65  CALL_KNOCK_IN = 9,
66 };
67 
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",
79  "SPOT_PRICE"},
80  {"ERROR", "STRIKE_PRICE", "TRAJECTORIES_NUMBER", "STEPS_NUMBER", "EXP_T",
81  "SPOT_PRICE"},
82  {"ERROR", "STRIKE_PRICE", "LOWER_BARRIER"},
83  {"ERROR", "STRIKE_PRICE", "LOWER_BARRIER"},
84  {"ERROR", "STRIKE_PRICE", "UPPER_BARRIER"},
85  {"ERROR", "STRIKE_PRICE", "UPPER_BARRIER"}};
86 } // namespace
87 
91 bool is_double(const std::string& str);
92 
97 class Command {
98  friend class Execution;
99 
100  private:
101  int _code;
102  std::map<std::string, std::string> _key_numbers;
103 
104  public:
105  Command() : _code(Commands["INVALID_COMMAND"]) {}
106 
107  Command(std::string com);
108 
109  int code() const;
110 
111  std::string to_json() const;
112 
113  friend std::ostream& operator<<(std::ostream& os, const Command& C);
114 };
115 
116 class Execution {
117  private:
118  int traj_generated = 0;
119  int isBS = 1;
120  std::vector<std::vector<double>> traj;
121  std::vector<std::vector<double>> w;
122  std::vector<double> T;
123  std::vector<double> y;
124 
125  BlackScholes BSmodel;
126  LocalVolatility LVmodel;
127 
128  public:
130 
131  int execute(Command C);
132 };
133 
134 #endif //FTQUANT_SYNTAXPARSER_HPP
bool is_double(const std::string &str)
@function is_double
Implements the Black-Scholes model.
Definition: BlackSholes.hpp:32
Container for the commands Class contains the parsed command.
int code() const
std::string to_json() const
friend std::ostream & operator<<(std::ostream &os, const Command &C)
int execute(Command C)
Implements the Dupire's local volatility model.
The main header file for the FTQlib library.