-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.mq4
More file actions
19 lines (15 loc) · 712 Bytes
/
Test.mq4
File metadata and controls
19 lines (15 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//+------------------------------------------------------------------+
//| Test.mq4 |
//| Copyright 2021, Maulana Aji Wicaksono |
//| https://www.instagram.com/aw.design30 |
//+------------------------------------------------------------------+
#property copyright "Copyright 2021, Maulana Aji Wicaksono"
#property link "https://www.instagram.com/aw.design30"
#property version "1.00"
#property strict
void OnStart(){
// Membuat pesan pop-up bertuliskan Hello World
Alert("Hello World!");
// Tulisan ini muncul di window chart
Comment("Tulisan ini muncul di window chart");
}