OPEN-SOURCE SCRIPT

sell & buy indicator for BEHRAD

//version=5
indicator("اندیکاتور خرید و فروش", overlay=true)

// تنظیمات
rsiPeriod = input(14, title="دوره RSI")
rsiOverbought = input(70, title="اشباع خرید (Overbought)")
rsiOversold = input(30, title="اشباع فروش (Oversold)")
shortMA = input(9, title="میانگین متحرک کوتاه‌مدت")
longMA = input(21, title="میانگین متحرک بلندمدت")

// محاسبات
rsi = ta.rsi(close, rsiPeriod)
shortMAValue = ta.sma(close, shortMA)
longMAValue = ta.sma(close, longMA)

// سیگنال‌ها
buySignal = rsi < rsiOversold and shortMAValue > longMAValue
sellSignal = rsi > rsiOverbought and shortMAValue < longMAValue

// ترسیم نقاط خرید و فروش
plotshape(buySignal, title="خرید", location=location.belowbar, color=color.green, style=shape.labelup, text="Buy")
plotshape(sellSignal, title="فروش", location=location.abovebar, color=color.red, style=shape.labeldown, text="Sell")

// میانگین‌ها
plot(shortMAValue, color=color.blue, title="میانگین کوتاه‌مدت")
plot(longMAValue, color=color.orange, title="میانگین بلندمدت")
Bands and ChannelsBill Williams IndicatorsCandlestick analysis

Open-source Skript

Ganz im Sinne von TradingView hat dieser Autor sein/ihr Script als Open-Source veröffentlicht. Auf diese Weise können nun das Script auch andere Trader verstehen und prüfen. Vielen Dank an den Autor! Sie können das Script kostenlos verwenden. Die Nutzung dieses Codes in einer Veröffentlichung wird in unseren Hausregeln reguliert. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Möchten Sie dieses Skript auf einem Chart verwenden?

Haftungsausschluss