H1 timeframe bars?

 
Im trying to create a buy when the current price reach's 10 pip's above the current bars low on the HR1 chart and vice versa for sell. I have created some EA's on indicators but I am not skilled enough yet at this and need help for this particular trigger. Can anyone help me with this? Thanks!
 

Try this for your buy condition:


Low[0]<Close[0]+100*Point
 
jirimac wrote >>

Try this for your buy condition:

That condition is true ever. Probably you ment:

if(Bid>Open[0]+10*Point)
 
Ops, you right Roger. Thanks :)
 

Jirimac- Im looking for it to buy mid bar as opposed to close. I might be reading that incorrectly.

Roger- Would " if(Bid>Low[0]+10*Point) " be more correct?

Thanks, guys.

Reason: