I'm trying to draw a horizontal line using Draw.Line, but I can't find a way to change the line thickness. My current code looks like this:
Draw.Line(this, CurrentBar + ".VsalineDown", 1, High[1] - 1, -20, High[1] - 1, Brushes.Yellow); all it's ok
But when I try different posibilities
Draw.Line(this, CurrentBar + ".VsalineDown", 1, High[1] - 1, -20, High[1] - 1, Brushes.Yellow, , DashStyleHelper.Solid, ....
I would like to make the line thicker, but I don’t see an option to set the width.
Is there a way to increase the thickness of a Draw.Line?
If not, what is the best alternative?
Thanks in advance!

Comment