My indicator is functioning well until I add this part of the code:
protected override void OnRender(ChartControl chartControl, ChartScale chartScale)
{
Pixel_x_Tick = chartScale.GetPixelsForDistance(TickSize);
}
[Browsable(false)]
[XmlIgnore()]
public Series<double> MA1
{
get { return Values[0]; }
}
Can you please help me to resolve this issue ?
Thanks,
Nima

Comment