[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Alerts set to appear only once?



PureBytes Links

Trading Reference Links


Off the cuff...  

Var:

AlertBar(0);


If CheckAlert and {Alert Conditions} and 
  BarNumber <> AlertBar then begin

    Alert = TRUE;
    AlertBar = BarNumber;

End;



 ---- you wrote: 
> Is there a way to set an alert triggered from
> EL code to appear to the 
> screen 1 time?  I know I can set the
> sound alert on once, but I want to 
> eliminate the recurring alert to the screen 
> every tick of the alert bar.  
> Please note that I wish to update my study every tick.
>