11 std::istringstream iss(str);
13 iss >> std::noskipws >> d;
14 return iss.eof() && !iss.fail();
18 std::string json =
"{";
19 json +=
"code: " + std::to_string(_code) +
", " +
"keyNumbers: ";
20 for (
const auto& [key, value] : _key_numbers)
21 json +=
'[' + key +
"] = " + value +
"; ";
28 std::stringstream ss(com);
29 std::vector<std::string> words;
36 if (Commands.count(word)) {
37 _code = Commands[word];
39 _code = Commands[
"INVALID_COMMAND"];
44 words.push_back(word);
47 for (
const auto& w : words) {
48 if (Fields.count(w)) {
50 _key_numbers[w] =
"0";
59 _key_numbers[temp] = w;
62 _code = INVALID_COMMAND;
69 for (
const auto& w : RequiredFields[_code]) {
70 if (!_key_numbers.count(w)) {
71 _code = INVALID_COMMAND;
82 std::ifstream in(fname);
83 std::vector<double> ans;
86 while (std::getline(in, line)) {
88 ans.push_back(std::stod(line));
106 std::ifstream in(fname);
107 std::vector<std::vector<double>> ans;
109 while (std::getline(in, line)) {
110 std::stringstream ss(line);
111 std::vector<double> numbers;
116 numbers.push_back(std::stod(word));
118 numbers.push_back(-1);
121 ans.push_back(numbers);
124 std::vector<double> num{-1};
137 std::vector<std::vector<double>> w;
138 std::vector<double> T;
139 std::vector<double> y;
141 std::vector<std::vector<double>> trajs;
145 case INVALID_COMMAND: {
146 std::cout <<
"Invalid"
152 case BLACK_SCHOLES: {
155 BSmodel =
BlackScholes(std::stod(C._key_numbers.at(
"INTEREST_RATE")),
156 std::stod(C._key_numbers.at(
"SIGMA")));
163 case BLACK_SCHOLES_F: {
166 for (
auto& s : stocks) {
194 for (
auto& s2 : s1) {
201 std::stod(C._key_numbers.at(
"SPOT_PRICE")));
206 case GENERATE_TRAJECTORIES: {
210 std::stod(C._key_numbers.at(
"TRAJECTORIES_NUMBER")),
211 std::stod(C._key_numbers.at(
"SPOT_PRICE")),
212 std::stod(C._key_numbers.at(
"STEPS_NUMBER")),
213 std::stod(C._key_numbers.at(
"EXP_T")));
215 std::cout <<
"tr gen \n" << traj_generated << std::endl;
219 std::stod(C._key_numbers.at(
"TRAJECTORIES_NUMBER")),
220 std::stod(C._key_numbers.at(
"STEPS_NUMBER")),
221 std::stod(C._key_numbers.at(
"EXP_T")),
222 std::stod(C._key_numbers.at(
"SPOT_PRICE")));
231 double strike = std::stod(C._key_numbers.at(
"STRIKE_PRICE"));
248 std::function<double(
double)> payoff = [strike](
double v) {
249 return ((v - strike) > 0 ? (v - strike) : 0);
253 payoff, std::stod(C._key_numbers.at(
"ERROR")),
254 std::stod(C._key_numbers.at(
"STEPS_NUMBER")),
255 std::stod(C._key_numbers.at(
"EXP_T")),
256 std::stod(C._key_numbers.at(
"SPOT_PRICE")),
true, 0.95, 1000);
258 std::cout <<
"ans: " << res.
to_json() << std::endl;
265 double strike = std::stod(C._key_numbers.at(
"STRIKE_PRICE"));
268 std::function<double(
double)> payoff = [strike](
double v) {
269 return ((strike - v) > 0 ? (strike - v) : 0);
273 payoff, std::stod(C._key_numbers.at(
"ERROR")),
274 std::stod(C._key_numbers.at(
"STEPS_NUMBER")),
275 std::stod(C._key_numbers.at(
"EXP_T")),
276 std::stod(C._key_numbers.at(
"SPOT_PRICE")),
277 std::stod(C._key_numbers.at(
"TRAJECTORIES_NUMBER")));
279 std::cout << res.
to_json() << std::endl;
376 std::cout <<
"code: " << C._code << std::endl;
377 std::cout <<
"keyNumbers: ";
378 for (
const auto& [key, value] : C._key_numbers)
379 std::cout <<
'[' << key <<
"] = " << value <<
"; ";
381 std::cout << std::endl;
bool is_double(const std::string &str)
@function is_double
std::vector< std::vector< double > > read2DFromFile(std::string fname)
std::vector< double > readStocksFromFile(std::string fname)
std::ostream & operator<<(std::ostream &os, const Command &C)
Implements the Black-Scholes model.
std::vector< std::vector< double > > generate_paths(int n_paths, int steps, double T, double spot, bool antithetic=true)
void calibrate(std::vector< double > &stock_prices)
Container for the commands Class contains the parsed command.
std::string to_json() const
int calibrate_dupire(std::vector< std::vector< double >> &w, std::vector< double > &T, std::vector< double > &y, double spot)
std::vector< std::vector< double > > generate_paths(int n_paths, double spot, int steps, double T)
A controller for derivatives pricing via a Monte-Carlo simulation.
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.