تحلیل تکنیکال seydkamal123 درباره نماد PUMP در تاریخ ۱۴۰۴/۵/۱۹

// نسخه =5 اندیکاتور("سیگنالهای EMA + RSI (سبک)", overlay=true) // ==== ورودیها ==== fastLen = input.int(9, "طول EMA سریع") slowLen = input.int(21, "طول EMA کند") rsiLen = input.int(14, "طول RSI") rsiLongMin= input.int(45, "حداقل RSI برای خرید") rsiShortMax= input.int(55, "حداکثر RSI برای فروش") // ==== محاسبات ==== emaFast = ta.ema(close, fastLen) emaSlow = ta.ema(close, slowLen) rsiVal = ta.rsi(close, rsiLen) // ==== سیگنالها ==== longSignal = ta.crossover(emaFast, emaSlow) and (rsiVal >= rsiLongMin) sellSignal = ta.crossunder(emaFast, emaSlow) and (rsiVal <= rsiShortMax) // ==== نمایش EMAها ==== plot(emaFast, color=color.green, linewidth=2) plot(emaSlow, color=color.red, linewidth=2) // ==== نمایش سیگنالها ==== plotshape(longSignal, title="خرید", location=location.belowbar, color=color.green, style=shape.labelup, text="خرید") plotshape(sellSignal, title="فروش", location=location.abovebar, color=color.red, style=shape.labeldown, text="فروش") // ==== هشدارها ==== alertcondition(longSignal, title="هشدار خرید", message="سیگنال خرید فعال شد") alertcondition(sellSignal, title="هشدار فروش", message="سیگنال فروش فعال شد")