if (CurrentBar<emalenlow)
return;
emalow[0]= EMA(Low, emalenlow)[0];
AddPlot(Brushes.Red, "emalow");
[Browsable(false)]
[XmlIgnore]
public Series<double> emalow
{
get { return Values[0]; }
}

Comment