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
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
@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 );
// Try
Plot(C,"Close",colorDefault,styleBar+styleThick);
Thank you very much beppe and brajeevn