AleksanderThor

Outside Bar Failure Updated!

145
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.

Skrip sumber terbuka

Dalam semangat TradingView yang sebenar, penulis skrip ini telah menerbitkannya dengan menggunakan sumber terbuka supaya pedagang-pedagang dapat memahami dan mengesahkannya. Sorakan kepada penulis! Anda dapat menggunakannya secara percuma tetapi penggunaan semula kod ini dalam penerbitan adalah dikawalselia oleh Peraturan Dalaman. Anda boleh menyukainya untuk menggunakannya pada carta.

Penafian

Maklumat dan penerbitan adalah tidak dimaksudkan untuk menjadi, dan tidak membentuk, nasihat untuk kewangan, pelaburan, perdagangan dan jenis-jenis lain atau cadangan yang dibekalkan atau disahkan oleh TradingView. Baca dengan lebih lanjut di Terma Penggunaan.

Ingin menggunakan skrip ini pada carta?
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")