only places buy trades - page 2

 
In the EA returned I just removed the Bid < sl condition. I guess the code should look somewhat like this
double b = EMA_DIST*Point;    // Must enter trades 10 pips higher or lower than highest high or lowest low //
double bh = hh-b;  // bh = Buy Higher
double sl = ll+b;  // sl = Sell Lower
the b var wasn't used
Reason: