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

Mã nguồn mở

Theo tinh thần TradingView thực sự, tác giả của tập lệnh này đã xuất bản dưới dạng nguồn mở để các nhà giao dịch có thể hiểu và xác minh. Chúc mừng tác giả! Bạn có thể sử dụng miễn phí. Tuy nhiên, bạn cần sử dụng lại mã này theo Quy tắc nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?

Thông báo miễn trừ trách nhiệm