I want to have it as one of the parameters options when I add it to the chart. Something like
[Description("Period for third SMA line. (Numbers of bars used for calculations)")]
[Category("Parameters")]
public int SMA3
{
get { return sma3; }
set { sma3 = Math.Max(1, value); }
}


Comment