Draw.Line(this, "ALOW", false, tAStartTime, dALow, Time[0], dALow, eBox1Color, eBox1LineStyle, nBox1LineWidth);
eBox1Color, eBox1LineStyle, nBox1LineWidth are the paremeters I want to use but The function allows a template name
Draw.Line(NinjaScriptBase owner, string tag, bool isAutoScale, DateTime startTime, double startY, DateTime endTime, double endY, bool isGlobal, string templateName)
This is the statement I am currently using. What I want to do is
Draw.Line(NinjaScriptBase owner, string tag, bool isAutoScale, DateTime startTime, double startY, DateTime endTime, double endY, Brush brush, DashStyleHelper dashStyle, int width)
create an internal template of these parameters and make an internal template
Brush brush, DashStyleHelper dashStyle, int width
I allow the user to change the line color dash style and width.

Comment