is it possible to adjust the EMA not only at the beginning of the programm?
If i attach an EMA to a ninjascript strategy i´ll get following code:
else if (State == State.DataLoaded)
{
EMA1 = EMA(Close, Convert.ToInt32(EMAValue);
}
Is there a possibility to change the value of the EMA while the programm is running?


Comment