Low/High in last 60 seconds

 
Is it possible to get the lowest/highest point within the last 60 seconds (Low[]/High[] cannot be used as it may be used on other timeframes such as M5 aswell)?
 
FlashX:
Is it possible to get the lowest/highest point within the last 60 seconds (Low[]/High[] cannot be used as it may be used on other timeframes such as M5 aswell)?
You can't "get" it unless you remember the ticks or the high and low that occurred during the last 60 seconds . . . you can get the high and low during the last completed minute . . .  use iHigh() and iLow() with PERIOD_M1
 

I made it myself 

It is possible you have to make an array

in wich you place Bid price and the time of that tick    like array [...] [2]      

if the time has last more then your timeinput you can delete that tick from the array

also if last tick is equal to one of the older ticks in your array you can delete the older tick 

make oldest tick in your array occurred the last xx seconds   the first number of that array

Reason: