The support forum is built with (1) General and FAQ forums for common trading queries received from aspiring and experienced traders, and (2) forums for course video topics. How to Trade Price Action and How to Trade Forex Price Action videos are consolidated into common forums.
Brooks Trading Course social media communities
Brooks Trading Course Learning Resources >>>
So, my brain is REALLY bad at filtering out that forming bar jiddering up and down, telling me that everything I believe is wrong, no, wait, I'm right... Hang on... Shit NO! I'M gonna lose everything...
You get the drift, so I made an indicator in Powerlanguage for Multicharts (it should translate to easylanguage).
What it does is --> Hides the bar that is currently forming on the chart and will only draw it, once it closes.
How to set it up. Create a new indicator and copy/paste the code from the end of this post. Then go into the instrument setting and go to 'Style' tab. Here you click on the barcolours and slide the transparency slider to the bottom (fully transparent). Do this for bars and wicks.
It's really simple and of course, how you hide the instruments bars differs from platform to platform.
Sharing because this may help you to, it has made a world of difference to me.
if BarStatus(1) = 2 then begin if Close >= Open then PlotPaintBar(High, Low, Open, Close, "ClosedBar", Green) else PlotPaintBar(High, Low, Open, Close, "ClosedBar", Red); end;