IvanLabrie

R.E.Signal: Incredibly useful script

I coded this one using Tim West's concept of range expansion bars.
It's a nice addition to switch back and forth when using his UDIO bars from the Key Hidden Levels indicator pack to analyze price action on a bar by bar basis.
The indicator plots a red or green bar signaling strong buying on selling, which almost always implies continuation, or a good chance to fade any retracements after said bars.
Cheers,
Ivan.

🔒Want to dive deeper? Check out my paid services below🔒

ivanlabrie.substack.com/
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
study("R.E.Signal", overlay=true)
rangeup = close[1]+tr[1]
rangedown = close[1]-tr[1]
over() => high > rangeup and close > open
under() => low < rangedown and close < open
barcolor(over() ? green: under() ? red : na)