pooyakhojastemohtasham
@t_pooyakhojastemohtasham
تریدر چه نمادی را توصیه به خرید کرده؟
سابقه خرید
تخمین بازدهی ماه به ماه تریدر
پیام های تریدر
فیلتر
نوع پیام
اندیکاتور قدرتمند UltraPro ADA موبایل v3: ترید با فیلتر ضد سیگنال اشتباه!

// version =5 indicator("UltraPro ADA Mobile v3 (Anti-Fake Edition)", overlay=true) // ===== تنظیمات ===== hmaLen = input.int(50, "HMA Length") emaFast = input.int(21, "EMA Fast") emaSlow = input.int(89, "EMA Slow") atrLen = input.int(14, "ATR Length") rsiLen = input.int(14, "RSI Length") volMultiplier = input.float(1.3, "Volume Multiplier") // ===== اندیکاتورها ===== hma = ta.hma(close, hmaLen) ema1 = ta.ema(close, emaFast) ema2 = ta.ema(close, emaSlow) atr = ta.atr(atrLen) rsi = ta.rsi(close, rsiLen) volAvg = ta.sma(volume, 20) highVol = volume > volAvg * volMultiplier // ===== محاسبهی مومنتوم و واگرایی ساده ===== momentum = close - close [10] bullishDiv = (rsi < 35 and close < close [1] and close [1] < close [2]) and (rsi > ta.lowest(rsi, 5)) bearishDiv = (rsi > 65 and close > close [1] and close [1] > close [2]) and (rsi < ta.highest(rsi, 5)) // ===== شرایط اصلی روند ===== trendUp = ema1 > ema2 and close > hma trendDown = ema1 < ema2 and close < hma // ===== فیلتر ضد فیک ===== noFakeLong = not (bearishDiv and rsi > 70) noFakeShort = not (bullishDiv and rsi < 30) // ===== سیگنال نهایی ===== longCond = trendUp and momentum > 0 and highVol and noFakeLong shortCond = trendDown and momentum < 0 and highVol and noFakeShort // ===== نمایش ===== plotshape(longCond, title="Long", location=location.belowbar, color=color.new(color.lime, 0), style=shape.triangleup, size=size.small, text="LONG") plotshape(shortCond, title="Short", location=location.abovebar, color=color.new(color.red, 0), style=shape.triangledown, size=size.small, text="SHORT") // ===== هشدار ===== alertcondition(longCond, title="Long Alert", message="🚀 ADA Long Signal (1H, Anti-Fake)") alertcondition(shortCond, title="Short Alert", message="🔻 ADA Short Signal (1H, Anti-Fake)")
سلب مسئولیت
هر محتوا و مطالب مندرج در سایت و کانالهای رسمی ارتباطی سهمتو، جمعبندی نظرات و تحلیلهای شخصی و غیر تعهد آور بوده و هیچگونه توصیهای مبنی بر خرید، فروش، ورود و یا خروج از بازارهای مالی نمی باشد. همچنین کلیه اخبار و تحلیلهای مندرج در سایت و کانالها، صرفا بازنشر اطلاعات از منابع رسمی و غیر رسمی داخلی و خارجی است و بدیهی است استفاده کنندگان محتوای مذکور، مسئول پیگیری و حصول اطمینان از اصالت و درستی مطالب هستند. از این رو ضمن سلب مسئولیت اعلام میدارد مسئولیت هرنوع تصمیم گیری و اقدام و سود و زیان احتمالی در بازار سرمایه و ارز دیجیتال، با شخص معامله گر است.