FxLowe

Inside Bar Breakout Failure

Update with toggle for text label.

สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//@version=2
//FxLowe - Inside bar breakout failure.

study(title = "Inside Bar Breakout Failure", overlay = true)
showlabel = input(title="Show label", type=bool, defval=true)

outsidebar = (high >= high[1] and low <= low[1])
insidebar = ((high[1] <= high[2] and low[1] >= low[2]) and not(outsidebar))

bearishibbf=( insidebar and (high > high[1] and close < high[1]))
barcolor( bearishibbf ? white : na, 0, true, "Bearish Inside Bar Breakout Failure")
plotshape(showlabel ? bearishibbf : na, title= "Bearish Inside Bar Breakout Failure", location=location.abovebar, color=white, style=shape.arrowdown, text="Inside Bar\nBreakout Failure")

bullishibbf=(insidebar and (low < low[1] and close > low[1]))
barcolor( bullishibbf ? white : na, 0, true, "Bullish Inside Bar Breakout Failure")
plotshape(showlabel ? bullishibbf : na, title= "Bullish Inside Bar Breakout Failure", location=location.belowbar, color=white, style=shape.arrowup, text="Inside Bar\nBreakout Failure")