how to find high and low between 2 times

 

Hello friends

How can i find high and low between 5 am uk time to 8 am uk time using mq4?

Can you kindly help me with the code plz?

Thanks

Mohamed

 
adler2:

Hello friends

How can i find high and low between 5 am uk time to 8 am uk time using mq4?

Can you kindly help me with the code plz?

Thanks

Mohamed

Look up iHighest() and iLowest() in https://forum.mql4.com/28412
 
Find the 5am bar with iBarShift(NULL, 0, t1) Find 8am bar. Duration = bar8AM-bar5AM+1. iHighest using duration and bar8AM
Reason: