this
public string XYZ
{
get { return [COLOR="Red"]this[/COLOR].ABC; }
}
......
private string ABC = ....;
2) I also see `base` keyword in different methods.. like:
if (State == State.SetDefaults)
{
[COLOR="Red"]base[/COLOR].Calculate = Calculate.OnBarClose;
[COLOR="red"]base[/COLOR].IsOverlay = (true);
.......
}
(base.Close[3] > base.High[3])

Comment