-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTutorial8.mq5
21 lines (20 loc) · 1001 Bytes
/
Tutorial8.mq5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//+------------------------------------------------------------------+
//| Tutorial7.mq5 |
//| Copyright 2019, GeneticTrading |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2019, GeneticTrading"
#property link "https://www.mql5.com"
#property version "1.00"
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
// the whole idea here is to explian if coditions and there use
if( 3<4){// condition
Alert(" three is less than four"); // this will execute if it is true
}
}
//+------------------------------------------------------------------+