Make the bars thicker

Hello,

Is there any way to make the bars thicker?
I can make them longer or shorter but not thicker and I would like to be able to.
Thank you very much

1 Like

@yonsi72, you can try to experiment with the last Plot() param "width" using negative values:

Plot( C, "Price", colorDefault, styleBar, null, null, 0, 0, -30 );

or if you do to need such wide bars try adding styleThick to the style:

Plot( C, "Price", colorDefault, styleBar | styleThick );

3 Likes

// Try
Plot(C,"Close",colorDefault,styleBar+styleThick);

1 Like

Thank you very much beppe and brajeevn