IvanLabrie

R.E.Signal V3.1: Code update

I removed the outside bar filter for range expansion bars.
You will need Tim West's TW_UB indicator to plot those. It'll be more useful if you use both, since you can see when prices trend or consolidate visually by seeing the bar colors alongside the range expansions.
Cheers,
Ivan.

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

linktr.ee/ivanlabrie
สคริปต์โอเพนซอร์ซ

ด้วยจิตวิญญาณของ TradingView อย่างแท้จริง ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้ผู้ค้าสามารถเข้าใจและตรวจสอบได้ ไชโยให้กับผู้เขียน! คุณสามารถใช้ได้ฟรี แต่การใช้รหัสนี้ซ้ำในสิ่งพิมพ์อยู่ภายใต้กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ เงื่อนไขการใช้บริการ

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("R.E.Signal V3.1", overlay=true)
rangeup = close[1]+tr[1]
rangedown = close[1]-tr[1]
over() => high > rangeup and close > open
under() => low < rangedown and close < open
plotshape(over(), style=shape.triangleup, location=location.belowbar, color=green)
plotshape(under(), style=shape.triangledown, location=location.abovebar, color=red)