OPEN-SOURCE SCRIPT

Combined Signal Indicator

//version=5
indicator("Combined Signal Indicator", overlay=true)

// Ayarlar
rsiLength = input.int(14, title="RSI Length")
macdFast = input.int(12, title="MACD Fast Length")
macdSlow = input.int(26, title="MACD Slow Length")
macdSignal = input.int(9, title="MACD Signal Length")
stochLength = input.int(14, title="Stochastic RSI Length")
stochD = input.int(3, title="Stochastic D")
emaLength = input.int(50, title="EMA Length")

// İndikatör Hesaplamaları
rsiValue = ta.rsi(close, rsiLength)
[macdLine, signalLine, _] = ta.macd(close, macdFast, macdSlow, macdSignal)
stochKValue = ta.stoch(close, high, low, stochLength) // 4 argüman
stochDValue = ta.sma(stochKValue, stochD)
emaValue = ta.ema(close, emaLength)

// AL ve SAT Sinyalleri
buySignal = (rsiValue < 30 and macdLine > signalLine and close > emaValue)
sellSignal = (rsiValue > 70 and macdLine < signalLine and close < emaValue)

// Sinyal Görselleştirme
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.new(color.green, 0), style=shape.labelup, text="BUY")
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.new(color.red, 0), style=shape.labeldown, text="SELL")
Breadth IndicatorsCandlestick analysisChart patterns

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