-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAninditha-EA.mq5
45 lines (35 loc) · 1.33 KB
/
Aninditha-EA.mq5
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
//+------------------------------------------------------------------+
//| Aninditha-EA.mq5 |
//| Copyright 2020, Harold and Siswandy |
//+------------------------------------------------------------------+
//External Script
#include "script\Testing.mqh";
#include "script\Analyze.mqh";
#include "script\Manage.mqh";
#include "script\Execute.mqh";
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit(){
int i = 0;
while(i < 5){
printAnalyze();
printManage();
printExecute();
printTesting();
Print(i);
i++;
}
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason){
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick(){
}
//+------------------------------------------------------------------+