OPEN-SOURCE SCRIPT

MACD + RSI Future Signals

//version=5
indicator("MACD + RSI Future Signals", overlay=true)

// تنظیمات مکدی
macdShortTerm = input.int(12, title="MACD Short Term")
macdLongTerm = input.int(26, title="MACD Long Term")
macdSignal = input.int(9, title="MACD Signal Line")

[macdLine, signalLine, _] = ta.macd(close, macdShortTerm, macdLongTerm, macdSignal)
macdHist = macdLine - signalLine

// تنظیمات آر اس آی
rsiPeriod = input.int(14, title="RSI Period")
rsiValue = ta.rsi(close, rsiPeriod)

// تنظیمات پیش‌بینی
predictBars = input.int(10, title="Predict Bars Ahead")

// سیگنال خرید و فروش بر اساس MACD و RSI
buySignal = macdHist > 0 and rsiValue < 30
sellSignal = macdHist < 0 and rsiValue > 70

// رسم سیگنال‌های خرید و فروش
plotshape(buySignal, color=color.green, style=shape.labelup, location=location.belowbar, text="BUY")
plotshape(sellSignal, color=color.red, style=shape.labeldown, location=location.abovebar, text="SELL")

// متغیرهای پیش‌بینی روند
var float predictedBuy = na
var float predictedSell = na
var line buyLine = na
var line sellLine = na

// محاسبه پیش‌بینی روند بر اساس سیگنال‌ها
if (buySignal)
predictedBuy := close + (ta.ema(macdLine, macdShortTerm) * 0.1) // پیش‌بینی روند خرید
// رسم خط پیش‌بینی خرید
if (not na(buyLine))
line.delete(buyLine) // حذف خط قبلی
buyLine := line.new(x1=bar_index, y1=close, x2=bar_index + predictBars, y2=predictedBuy, color=color.green, width=2, style=line.style_dashed)

if (sellSignal)
predictedSell := close - (ta.ema(macdLine, macdLongTerm) * 0.1) // پیش‌بینی روند فروش
// رسم خط پیش‌بینی فروش
if (not na(sellLine))
line.delete(sellLine) // حذف خط قبلی
sellLine := line.new(x1=bar_index, y1=close, x2=bar_index + predictBars, y2=predictedSell, color=color.red, width=2, style=line.style_dashed)

// نمایش توضیحات در قسمت اطلاعات
plotchar(buySignal, title="Buy Signal", char='↑', location=location.belowbar, color=color.green)
plotchar(sellSignal, title="Sell Signal", char='↓', location=location.abovebar, color=color.red)
Bands and ChannelsChart patternsCycles

Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in publication is governed by House rules. You can favorite it to use it on a chart.

Want to use this script on a chart?

Disclaimer