Technical analysis by hammadsaed12 about Symbol FET on 5/15/2025

//version=5indicator("قالب مؤشرات الاتجاه - TradingView", overlay=true)// المتوسطات المتحرکة EMA 50 و EMA 200ema50 = ta.ema(close, 50)ema200 = ta.ema(close, 200)plot(ema50, color=color.blue, title="EMA 50")plot(ema200, color=color.orange, title="EMA 200")// بارابولیک سارsar = ta.sar(0.02, 0.02, 0.2)plotshape(series=sar < close, location=location.belowbar, color=color.green, style=shape.triangleup, title="SAR Buy Signal")plotshape(series=sar > close, location=location.abovebar, color=color.red, style=shape.triangledown, title="SAR Sell Signal")// ADXadx = ta.adx(14)hline(25, "ADX 25", color=color.gray)plot(adx, title="ADX", color=color.purple, linewidth=2, overlay=false)// إیشیموکوconversionLine = ta.sma(ta.highest(high, 9) + ta.lowest(low, 9), 2)baseLine = ta.sma(ta.highest(high, 26) + ta.lowest(low, 26), 2)leadingSpanA = ta.sma(conversionLine + baseLine, 2)leadingSpanB = ta.sma(ta.highest(high, 52) + ta.lowest(low, 52), 2)plot(conversionLine, title="Tenkan-sen", color=color.green)plot(baseLine, title="Kijun-sen", color=color.red)plot(leadingSpanA, title="Senkou Span A", color=color.green, style=plot.style_area, transp=80)plot(leadingSpanB, title="Senkou Span B", color=color.red, style=plot.style_area, transp=80)