OPEN-SOURCE SCRIPT

FL and FTR Detector

//version=5
indicator("FL and FTR Detector", overlay=true)

// تنظیمات ورودی‌ها
fvgLength = input.int(5, title="FVG Length", minval=1) // طول شکاف FVG
lookBack = input.int(10, title="Look Back Period", minval=1) // بازه زمانی برای تشخیص FTR

// محاسبه بالاترین و پایین‌ترین قیمت در طول بازه مشخص
highPrev = ta.highest(high, fvgLength)
lowPrev = ta.lowest(low, fvgLength)

// FVG Bullish (شکاف ارزش منصفانه صعودی)
fvgBullish = close[1] < lowPrev and close > highPrev

// FVG Bearish (شکاف ارزش منصفانه نزولی)
fvgBearish = close[1] > highPrev and close < lowPrev

// تشخیص FTR
ftrBullish = close > highPrev and close[1] < highPrev // عدم بازگشت به بالاترین سطح
ftrBearish = close < lowPrev and close[1] > lowPrev // عدم بازگشت به پایین‌ترین سطح

// نمایش FVG Bullish و FVG Bearish
plotshape(fvgBullish, location=location.belowbar, color=color.green, style=shape.labelup, text="FVG Bullish", title="Bullish FVG")
plotshape(fvgBearish, location=location.abovebar, color=color.red, style=shape.labeldown, text="FVG Bearish", title="Bearish FVG")

// نمایش FTR Bullish و FTR Bearish
plotshape(ftrBullish, location=location.belowbar, color=color.blue, style=shape.triangledown, text="FTR Bullish", title="Bullish FTR")
plotshape(ftrBearish, location=location.abovebar, color=color.orange, style=shape.triangleup, text="FTR Bearish", title="Bearish FTR")
Candlestick analysisChart patternsCycles

Open-source Skript

Ganz im Sinne von TradingView hat dieser Autor sein/ihr Script als Open-Source veröffentlicht. Auf diese Weise können nun das Script auch andere Trader verstehen und prüfen. Vielen Dank an den Autor! Sie können das Script kostenlos verwenden. Die Nutzung dieses Codes in einer Veröffentlichung wird in unseren Hausregeln reguliert. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Möchten Sie dieses Skript auf einem Chart verwenden?

Haftungsausschluss