I have a code that manipulates EMA and I would make that EMA thicker.
Draw.Line(this, "EMA_Line_" + CurrentBar, true, 0, ma[0], -1, ma[0], plotColor, lineWidth);
how do I do that. I keep having the same errors:
Argument 8: cannot convert from 'System.Windows.Media.Brush' to 'bool'
Argument 9: cannot convert from 'int' to 'string'
or
'DashStyle' does not contain a definition for 'Solid'

Comment