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/
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
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)