OPEN-SOURCE SCRIPT

RSI, MACD and MA Strategy

//version=5
indicator("RSI, MACD and MA Strategy", overlay=true)

// RSI Input
rsiLength = input(14, title="RSI Length")
rsiSource = input(close, title="RSI Source")
rsiOverbought = input(70, title="Overbought Level")
rsiOversold = input(30, title="Oversold Level")

// MACD Input
macdShortLength = input(12, title="MACD Short Length")
macdLongLength = input(26, title="MACD Long Length")
macdSignalLength = input(9, title="MACD Signal Length")

// MA Input
maLength = input(50, title="MA Length")

// RSI Calculation
rsiValue = ta.rsi(rsiSource, rsiLength)

// MACD Calculation
[macdLine, signalLine, _] = ta.macd(close, macdShortLength, macdLongLength, macdSignalLength)

// Moving Average Calculation
maLine = ta.sma(close, maLength)

// Buy and Sell Conditions
buySignal = ta.crossover(rsiValue, rsiOversold) and ta.crossover(macdLine, signalLine) and close > maLine
sellSignal = ta.crossunder(rsiValue, rsiOverbought) and ta.crossunder(macdLine, signalLine) and close < maLine

// Plotting Signals
plotshape(series=buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
Breadth Indicators

Skrypt open-source

W prawdziwym duchu TradingView autor tego skryptu opublikował go jako open source, aby inwestorzy mogli go zrozumieć i zweryfikować. Pozdrowienia dla autora! Możesz go używać bezpłatnie, ale ponowne użycie tego kodu w publikacji podlega Zasadom Regulaminu. Możesz go oznaczyć jako ulubione, aby użyć go na wykresie.

Chcesz użyć tego skryptu na wykresie?

Wyłączenie odpowiedzialności