// updates the EMA50 and EMA100 indicators, returning true when they're both ready
 public bool Update(DateTime time, decimal value)
 {
     return(Fast.Update(time, value) && Slow.Update(time, value));
 }
Exemplo n.º 2
0
 public bool Update(DateTime time, decimal value)
 {
     return(EMA50.Update(time, value) && EMA100.Update(time, value));
 }