AliETHUSDTPERP PERPETUAL MIX CONTRACTBITGET:ETHUSDT.Palibanai56//@version=5 indicator("15min Crypto Strategy Alert", overlay=true) // === تنظیمات === emaLength = 200 rsiLength = 14 rsiOverbought = 65 rsiOversold = 35 // === اندیکاتورها === ema = ta.ema(close, emaLength) rsi = ta.rsi(close, rsiLength) // === کندلهای تأییدی === bullishEngulfing = close < open and close > open and close > open and open open and close < open and close < open and open >= close // === شرایط ورود لانگ === longCondition = close > ema and rsi < rsiOversold and bullishEngulfing // === شرایط ورود شورت === shortCondition = close < ema and rsi > rsiOverbought and bearishEngulfing // === نمایش سیگنال روی چارت === plotshape(longCondition, title="LONG Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="LONG") plotshape(shortCondition, title="SHORT Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SHORT") // === هشدارها === alertcondition(longCondition, title="Long Signal", message="🚀 سیگنال ورود لانگ صادر شد!") alertcondition(shortCondition, title="Short Signal", message="🔻 سیگنال ورود شورت صادر شد!")