-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSimpleMCMain5.cpp
More file actions
51 lines (37 loc) · 812 Bytes
/
SimpleMCMain5.cpp
File metadata and controls
51 lines (37 loc) · 812 Bytes
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
/*
requires
DoubleDigital.cpp
PayOff2.cpp,
Random1.cpp,
SimpleMC2.cpp
*/
#include "SimpleMC2.h"
#include "DoubleDigital.h"
#include <iostream>
using namespace std;
int main() {
double Expiry;
double Low, Up;
double Spot;
double Vol;
double r;
unsigned long NumberOfPaths;
cout << "\nEnter expiry\n";
cin >> Expiry;
cout << "\nEnter low barrier\n";
cin >> Low;
cout << "\nEnter up barrier\n";
cin >> Up;
cout << "\nEnter spot\n";
cin >> Spot;
cout << "\nEnter vol\n";
cin >> Vol;
cout << "\nr\n";
cin >> r;
cout << "\nNumber of paths\n";
cin >> NumberOfPaths;
PayOffDoubleDigital thePayOff(Low, Up);
double result = SimpleMonteCarlo2(thePayOff, Expiry, Spot, Vol, r, NumberOfPaths);
cout << "The prices is " << result << endl;
return 0;
}