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 de código abierto

Siguiendo fielmente el espíritu de TradingView, el autor de este script lo ha publicado en código abierto, permitiendo que otros traders puedan entenderlo y verificarlo. ¡Olé por el autor! Puede utilizarlo de forma gratuita, pero tenga en cuenta que la reutilización de este código en la publicación se rige por las Normas internas. Puede añadir este script a sus favoritos y usarlo en un gráfico.

¿Quiere utilizar este script en un gráfico?

Exención de responsabilidad