-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrander.mq5
35 lines (32 loc) · 1.28 KB
/
rander.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
//+------------------------------------------------------------------+
//| rander.mq5 |
//| Mostafa |
//| mostafaramezani.com |
//+------------------------------------------------------------------+
#property copyright "Mostafa"
#property link "mostafaramezani.com"
#property version "1.00"
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---
}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
}
//+------------------------------------------------------------------+