Mt4 Forex Programming Language
In this blog, I will tell you how to write code in the Mt4 trading platform.
Our very first step is to write "Hello World" program which is traditional way to start any Program language :)
The code for the program is here:
Our very first step is to write "Hello World" program which is traditional way to start any Program language :)
The code for the program is here:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//+------------------------------------------------------------------+
//| Tutorial1.mq4 |
//| Copyright 2018, Ali Hassam |
//| forexxwizards.blogspot.com
//+------------------------------------------------------------------+
#property copyright "Copyright forexxwizards.blogspot.com
"/+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
Alert("Hello World!");
|
Comments
Post a Comment