15.05.2025 tarihinde sembol FET hakkında Teknik hammadsaed12 analizi

//version=5 indicator("الگوی شاخصهای روند - TradingView", overlay=true) // میانگینهای متحرک نمایی EMA 50 و EMA 200 ema50 = 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") plotshape(series=sar > close, location=location.abovebar, color=color.red, style=shape.triangledown, title="سیگنال فروش SAR") // ADX adx = ta.dmi(14) hline(25, "سطح 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)