-
Notifications
You must be signed in to change notification settings - Fork 0
/
SimpleMCMain5.cpp
82 lines (69 loc) · 1.79 KB
/
SimpleMCMain5.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* requires DoubleDigital.cpp
Payoff2.cpp
Random1.cpp
SimplreMC2.cpp */
#include "SimpleMC2.h"
#include "DoubleDigital.h"
#include "PowerOption.h"
#include <iostream>
using namespace std;
int main_OLD5()
{
double Expiry;
double Low, Up;
double Strike;
int Power;
double Spot;
double Vol;
double r;
unsigned long NumberOfPaths;
cout << "\nEnter expiry\n";
cin >> Expiry;
cout << "\nEnter low barrier and up barrier\n";
cin >> Low >> Up;
cout << "\nEnter power for the power opiton\n";
cin >> Power;
cout << "\nEnter strike for the power opiton\n";
cin >> Strike;
cout << "\nEnter spot\n";
cin >> Spot;
cout << "\nEnter vol\n";
cin >> Vol;
cout << "\nEnter r\n";
cin >> r;
cout << "\nEnter number of paths\n";
cin >> NumberOfPaths;
PayoffDoubleDigital thePayoff(Low, Up);
double result = SimpleMonteCarlo2(thePayoff,
Expiry,
Spot,
Vol,
r,
NumberOfPaths);
PayoffPowerCall thePayoffPowerCall(Power, Strike);
PayoffPowerPut thePayoffPowerPut(Power, Strike);
double resultDoubleDigit = SimpleMonteCarlo2(thePayoff,
Expiry,
Spot,
Vol,
r,
NumberOfPaths);
double resultPowerCall = SimpleMonteCarlo2(thePayoffPowerCall,
Expiry,
Spot,
Vol,
r,
NumberOfPaths);
double resultPowerPut = SimpleMonteCarlo2(thePayoffPowerPut,
Expiry,
Spot,
Vol,
r,
NumberOfPaths);
cout << "\nthe price of the option is: " << resultDoubleDigit << "\n"
<< "\nthe price for power call is: " << resultPowerCall
<< " and for power put: " << resultPowerPut << "\n";
double tmp;
cin >> tmp;
return 0;
}