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

Skrip sumber terbuka

Dalam semangat sebenar TradingView, penulis telah menerbitkan kod Pine ini sebagai sumber terbuka supaya pedagang dapat memahami dan mengesahkannya. Sorakan kepada penulis! Anda boleh menggunakan perpustakaan ini secara percuma, tetapi penggunaan semula kod dalam penerbitan ini adalah dikawal oleh Peraturan dalaman. Anda boleh menyukainya untuk menggunakannya pada carta.

Ingin menggunakan skrip ini pada carta?

Penafian