You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello, I'm new to MQL4 Programming and I hope I'm posting this in the right section but I need help, I've been trying to write a code that finds the lowest low and the highest high (Day's range) between 00:00 A.M and 08:00 A.M but so far i have been stuck in a CopyLow function (I don't know what to write in the part where I have to put my low_array[]):
//My variables
datetime Start_Time = StrToTime(StringConcatenate(Year(), ".", Month(), ".", Day()));
int AddNumber = 480;
datetime EndTime = Start_Time + AddNumber*60;
//Below is the CopyLow function:
double CopyLow(NULL, PERIOD_M15 , Start_Time , EndTime , (I don't know how to write low_array here));
Please help or if I'm approaching this the wrong way, what can I use?