What am I missing?
#region Variables
private DashStyle rangeLineStyle = DashStyle.Solid;
#endregion
protected override void OnBarUpdate()
{
DrawRay("Range", false, barsAgo, High[0], 0, High[0] , rangeLineColor, rangeLineStyle, rangeLineWidth);
}
#region Properties
[Description("Range LineStyle")]
[GridCategory("Visuals")]
[Gui.Design.DisplayNameAttribute("Range Line Style")]
public DashStyle RangeLineStyle
{
get { return rangeLineStyle; }
set { rangeLineStyle = value; }
}
#endregion
Thanks.

Comment