AleksanderThor

Outside Bar Failure Updated!

144
Great update -> choose the size of the wick that fails the OD range.
I will try to implement this for inside day failure as well.
This will improve the stats of this failed PA play.

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(title = "OF V1", overlay = true)
showlabel = input(title="Show label", type=bool, defval=true)

pctP = input(50, minval=1, maxval=99, title="Percentage Input For PBars, What % The Wick Of Candle Has To Be")
pblb = input(1, minval=1, maxval=100, title="PBars Look Back Period To Define The Trend of Highs and Lows")

//PBar Percentages
pctCp = pctP * .01
pctCPO = 1 - pctCp

range = high - low

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

bearishobbf = ((outsidebar and (high > high[1] and close < high[1]) and open < high - (range *  pctCp) and close < high-(range * pctCp) and high >= highest(pblb) ? 1 : 0))
bullishobbf = ((outsidebar and (low < low[1] and close > low[1]) and open > high - (range * pctCPO) and close > high - (range * pctCPO) and low <= lowest(pblb) ? 1 : 0))


barcolor(bearishobbf ? white : na, 0, true, "OF")
plotshape(showlabel ? bearishobbf : na, title= "OF", location=location.abovebar, color=white, style=shape.arrowdown, text="OF")

barcolor(bullishobbf ? white : na, 0, true, "OF")
plotshape(showlabel ? bullishobbf : na, title= "OF", location=location.belowbar, color=white, style=shape.arrowup, text="OF")