python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Metatrader 4/5 API for automation
Hello to all the community. Within the Metatrader platform, there is a way to create accounts once the desired broker has been selected. My problem arises when I want to automate this process from cod...

ldiaz997
Votes: 0
Answers: 1
MQL4: How to convert the value of iHigh() - iLow() to integer?
double _high = iHigh(Symbol(), Period(), 0);
double _low = iLow(Symbol(), Period(), 0);
double result = _high - _low;
Excuse my limited English.
The type of result is a double number, and I wan...
Abbotton
Votes: 0
Answers: 2
How do you retrieve the latest value from an array in MQL4?
How would I retrieve the latest value stored in an array in mql4? I need it so that the latest order open price is shown when I run my code below.
double OrderOpenPriceBuyArray[];
int count = 0;
Arra...
Rahul2304
Votes: 0
Answers: 1
How can I get history data from my custom indicator value in MQL4?
I just make function that can get my custom indicator value in mql4. But, i want to get all the history data from my custom indicator value. I know it work with changing shift value. But, i want to ge...
Agam Theos
Votes: 0
Answers: 1