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

Script open-source

Dans le plus pur esprit TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par nos Règles. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Vous voulez utiliser ce script sur un graphique ?

Clause de non-responsabilité