Myt
exactingFerret92732

مشخصات معامله
قیمت در زمان انتشار:
۹۰,۲۷۸.۵۱
توضیحات
//@version=5
indicator(\"سبک آزاد Edge-Algo\", overlay=true)
// ===== تنظیمات =====
emaFastLen = input.int(50, \"EMA Fast\")
emaSlowLen = input.int(200, \"EMA Slow\")
rsiLen = input.int(14, \"RSI Length\")
rsiBuy = input.int(55, \"RSI Buy Level\")
rsiSell = input.int(45, \"RSI Sell Level\")
atrLen = input.int(10, \"ATR Length\")
factor = input.float(3.0, \"SuperTrend Factor\")
// ===== شاخصها =====
emaFast = ta.ema(close, emaFastLen)
emaSlow = ta.ema(close, emaSlowLen)
rsiVal = ta.rsi(close, rsiLen)
// SuperTrend
= ta.supertrend(factor, atrLen)
// ===== شرایط معاملات =====
buySignal = dir == 1 and close > emaFast and emaFast > emaSlow and rsiVal > rsiBuy
sellSignal = dir == -1 and close < emaFast and emaFast < emaSlow and rsiVal < rsiSell
// ===== رسم =====
plot(emaFast, color=color.orange, title=\"EMA Fast\")
plot(emaSlow, color=color.blue, title=\"EMA Slow\")
plot(st, color=dir == 1 ? color.green : color.red, linewidth=2, title=\"SuperTrend\")
plotshape(buySignal, title=\"BUY\", location=location.belowbar,
style=shape.labelup, text=\"BUY\", color=color.green, textcolor=color.white)
plotshape(sellSignal, title=\"SELL\", location=location.abovebar,
style=shape.labeldown, text=\"SELL\", color=color.red, textcolor=color.white)
// ===== هشدارها =====
alertcondition(buySignal, title=\"Buy Alert\", message=\"Free Edge-Algo BUY Signal\")
alertcondition(sellSignal, title=\"Sell Alert\", message=\"Free Edge-Algo SELL Signal\")"},{
indicator(\"سبک آزاد Edge-Algo\", overlay=true)
// ===== تنظیمات =====
emaFastLen = input.int(50, \"EMA Fast\")
emaSlowLen = input.int(200, \"EMA Slow\")
rsiLen = input.int(14, \"RSI Length\")
rsiBuy = input.int(55, \"RSI Buy Level\")
rsiSell = input.int(45, \"RSI Sell Level\")
atrLen = input.int(10, \"ATR Length\")
factor = input.float(3.0, \"SuperTrend Factor\")
// ===== شاخصها =====
emaFast = ta.ema(close, emaFastLen)
emaSlow = ta.ema(close, emaSlowLen)
rsiVal = ta.rsi(close, rsiLen)
// SuperTrend
= ta.supertrend(factor, atrLen)
// ===== شرایط معاملات =====
buySignal = dir == 1 and close > emaFast and emaFast > emaSlow and rsiVal > rsiBuy
sellSignal = dir == -1 and close < emaFast and emaFast < emaSlow and rsiVal < rsiSell
// ===== رسم =====
plot(emaFast, color=color.orange, title=\"EMA Fast\")
plot(emaSlow, color=color.blue, title=\"EMA Slow\")
plot(st, color=dir == 1 ? color.green : color.red, linewidth=2, title=\"SuperTrend\")
plotshape(buySignal, title=\"BUY\", location=location.belowbar,
style=shape.labelup, text=\"BUY\", color=color.green, textcolor=color.white)
plotshape(sellSignal, title=\"SELL\", location=location.abovebar,
style=shape.labeldown, text=\"SELL\", color=color.red, textcolor=color.white)
// ===== هشدارها =====
alertcondition(buySignal, title=\"Buy Alert\", message=\"Free Edge-Algo BUY Signal\")
alertcondition(sellSignal, title=\"Sell Alert\", message=\"Free Edge-Algo SELL Signal\")"},{
مقالات undefined
مشاهده بیشترمنتخب سردبیر
مشاهده بیشتردستیار هوشمند ارز دیجیتال
ترمینال ترید بایتیکل نرمافزار جامع ترید و سرمایهگذاری در بازار ارز دیجیتال است و امکاناتی مانند دورههای آموزشی ترید و سرمایهگذاری، تریدینگ ویو بدون محدودیت، هوش مصنوعی استراتژی ساز ترید، کلیه دادههای بازارهای مالی شامل دادههای اقتصاد کلان، تحلیل احساسات بازار، تکنیکال و آنچین، اتصال و مدیریت حساب صرافیها و تحلیلهای لحظهای را برای کاربران فراهم میکند.

