Bonjour à tous,
ci dessous le code de l’indicateur Pin Bar detection de tradingview, si quelqu’un sait comment le traduire en PRT, je voudrais en faire un algo automatique.
je l’utilise sur ut H1/h4 très efficace pour prévoir les retournements de tendance.
Bonne journée à tous.
Ci-dessous:
//@version=2
study(“PIN BAR INDICATOR”,overlay=true)
//PIN BAR
body = abs(close-open)
upshadow = open>close?(high-open):(high-close)
downshadow = open>close?(close-low):(open-low)
pinbar_h = close[1]>open[1]?(body[1]>body?(upshadow>0.5*body?(upshadow>2*downshadow?1:0):0):0):0
pinbar_l = open[1]>close[1]?(body[1]>body?(downshadow>0.5*body?(downshadow>2*upshadow?1:0):0):0):0
plotshape(pinbar_h,style=shape.triangledown,color=red)
plotshape(pinbar_l,style=shape.triangleup,color=lime,location=location.belowbar)
plotchar(pinbar_h,text=”BEARISH PINBAR”,char=””,color=red)
plotchar(pinbar_l,text=”BULLISH PINBAR”,char=””,color=lime,location=location.belowbar)