| PureBytes Links Trading Reference Links | 
>IF CLOSE CROSSES OVER 1182 THEN
>ALERT ("HighBreakout");
How about 
input:
barstowait(5);
var:
oktosend(true),
timesent(0);
If Close crosses over 1182 and oktosend then begin
     Alert ("HighBreakout");
     oktosend = false;
     timesent = currentbar;
end;
If currentbar > (timesent + barstowait) then
     oktosend = true;
allister
 |