Nur pull back

Nur pull back

//@version=5 indicator("Pullback Detector", overlay=true)

// تنظیمات length = input(50, title="EMA Length") ema50 = ta.ema(close, length)

def isPullback(): return (ta.lowest(close, 5) > ta.lowest(close, 20)) and (close < ema50)

pullbackSignal = isPullback()

plot(ema50, title="EMA 50", color=color.blue) plotshape(pullbackSignal, location=location.belowbar, color=color.red, style=shape.labeldown, title="Pullback Signal")

Read More

Share:

Latest News