if (Falling(EMA(Typical, 8)) == true
&& Falling(EMA(Typical, 16)) == true
{
PlaySound…etc.
However, the alert is triggered (and if I altered this to work with trades, the trades would be entered) on every bar the conditions are met.
My goal is to have the alert sound on - and only on – the very first bar these conditions are met and not on the subsequent ones (until, of course, the reverse conditions are met).
I’d be very grateful to receive advice as to how to implement this. Is it possible to achieve this with the Strategy Wizard only? Or would some extra coding be necessary, and if so, what would this entail?
Much obliged in advance for any help.

Comment