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

Skrip open-source

Dengan semangat TradingView yang sesungguhnya, penulis skrip ini telah menerbitkannya sebagai sumber terbuka, sehingga para trader dapat memahami dan memverifikasinya. Hormat untuk penulisnya! Anda dapat menggunakannya secara gratis, namun penggunaan kembali kode ini dalam publikasi diatur oleh Tata Tertib. Anda dapat memfavoritkannya untuk digunakan pada chart

Inggin menggunakan skrip ini pada chart?

Pernyataan Penyangkalan