Print("The prior trading day's High is: " + Bars.GetDayBar(1).High);//Add your custom indicator logic here.
myline = Draw.HorizontalLine(this,"tag",Bars.GetDayBar(1).C lose,Brushes.Chartreuse);
Why do I get an object reference error here?
I set the object I thought using this
private DrawingTools.HorizontalLine myline;
thanks

Comment