Help, enter position.

 
Hello, I can not set the sales position.
My expert enters long if high is greater than the n opening and sells low value if the opening is less than the value n.

my code. 

if ((High [0] -Open [0]> 20 * Point)) return ("buy"); // buy signal
if ((Low [0] -Open [0]> 10 * Point)) return ("sell"); // sell signal

because the condition of sale does not work?
 
Low [0] -Open [0] can never be bigger than 0
 

how do I fix? 

 
ea_mt4:

how do I fix? 


if ((Open [0] - Low[0]> 10 * Point)) return ("sell"); // sell signal
 
thank you so much
Reason: