
이 전략은 RSI, MACD, 이동 평균 (SMA) 과 같은 여러 기술 지표와 결합 된 복잡한 다중 지표 거래 시스템으로, 가격 추세와 동력을 분석하여 거래 기회를 식별합니다. 전략은 200 일 평균선을 사용하여 장기 추세를 판단하고, 50 일 평균선은 중기 추세를 참조하며, 무작위 RSI와 MACD의 교차 신호를 사용하여 거래 시간을 확인합니다.
전략의 핵심 논리는 세 가지 주요 기둥 위에 구축됩니다.
구매 조건은 동시에 충족되어야 합니다:
판매 조건은 다음과 같습니다:
지표 변수 최적화:
신호 필터:
위험 관리 개선:
시장 적응성:
이것은 체계화된 트렌드 추적 전략이며, 여러 가지 기술 지표의 조합을 통해 거래의 신뢰성을 보장하면서도 명확한 위험 제어 장치를 제공합니다. 전략의 주요 장점은 다층 검증 장치에 있습니다. 그러나 동시에 여러 가지 지표가 가져올 수 있는 지연 위험을 제어하는 데 주의를 기울여야합니다. 지속적인 최적화 및 개선으로, 이 전략은 다양한 시장 환경에서 안정적인 성능을 유지할 것으로 예상됩니다.
/*backtest
start: 2019-12-23 08:00:00
end: 2024-12-10 08:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("RSI and MACD by Karthik", overlay=true)
// Define periods for SMAs
sma50Period = 50
sma200Period = 200
// Calculate SMAs
sma50 = ta.sma(close, sma50Period)
sma200 = ta.sma(close, sma200Period)
// Plot SMAs on the main chart
plot(sma50, color=color.blue, title="50 Period SMA", linewidth=2)
plot(sma200, color=color.red, title="200 Period SMA", linewidth=2)
// Define and calculate parameters for Stochastic RSI
stochRSIPeriod = 14
rsi = ta.rsi(close, stochRSIPeriod)
stochRSIK = ta.stoch(rsi, rsi, stochRSIPeriod, 3)
stochRSID = ta.sma(stochRSIK, 3)
// Define and calculate parameters for MACD
macdShort = 12
macdLong = 26
macdSignal = 9
[macdLine, signalLine, macdHist] = ta.macd(close, macdShort, macdLong, macdSignal)
// Plot Stochastic RSI in a separate pane
hline(80, "Overbought", color=color.red, linewidth=1)
hline(20, "Oversold", color=color.green, linewidth=1)
plot(stochRSIK, color=color.blue, title="Stochastic RSI %K")
plot(stochRSID, color=color.red, title="Stochastic RSI %D")
// Plot MACD in a separate pane
hline(0, "Zero Line", color=color.gray, linewidth=1)
plot(macdHist, color=color.blue, title="MACD Histogram", style=plot.style_histogram)
plot(macdLine, color=color.red, title="MACD Line")
plot(signalLine, color=color.green, title="Signal Line")
// Conditions for buy and sell signals
isAbove200SMA = close > sma200
isStochRSIKAbove = stochRSIK > stochRSID
macdLineAbove = macdLine > signalLine
buySignal = isAbove200SMA and isStochRSIKAbove and macdLineAbove
isBelow200SMA = close < sma200
isStochRSIKBelow = stochRSIK < stochRSID
macdLineBelow = macdLine < signalLine
sellSignal = isBelow200SMA and isStochRSIKBelow and macdLineBelow
// Track the last signal with explicit type declaration
var string lastSignal = na
// Create series for plotting conditions
var bool plotBuySignal = na
var bool plotSellSignal = na
var bool plotExitBuySignal = na
var bool plotExitSellSignal = na
// Update plotting conditions based on signal and last signal
if buySignal and (lastSignal != "buy")
plotBuySignal := true
lastSignal := "buy"
else
plotBuySignal := na
if sellSignal and (lastSignal != "sell")
plotSellSignal := true
lastSignal := "sell"
else
plotSellSignal := na
// Update exit conditions based on SMA50
if lastSignal == "buy" and close < sma50
plotExitBuySignal := true
lastSignal := na // Clear lastSignal after exit
else
plotExitBuySignal := na
if lastSignal == "sell" and close > sma50
plotExitSellSignal := true
lastSignal := na // Clear lastSignal after exit
else
plotExitSellSignal := na
// Plot buy and sell signals on the main chart
plotshape(series=plotBuySignal, location=location.belowbar, color=color.green, style=shape.circle, size=size.small, title="Buy Signal")
plotshape(series=plotSellSignal, location=location.abovebar, color=color.red, style=shape.circle, size=size.small, title="Sell Signal")
// Plot exit signals for buy and sell
plotshape(series=plotExitBuySignal, location=location.belowbar, color=color.yellow, style=shape.xcross, size=size.small, title="Exit Buy Signal")
plotshape(series=plotExitSellSignal, location=location.abovebar, color=color.yellow, style=shape.xcross, size=size.small, title="Exit Sell Signal")
// Strategy to Backtest
long = buySignal
short = sellSignal
// Exit Conditions
exitBuy = close < sma50
exitSell = close > sma50
if (buySignal)
strategy.entry("Long", strategy.long, 1.0)
if (sellSignal)
strategy.entry("Short", strategy.short, 1.0)
strategy.close("Long", when=exitBuy)
strategy.close("Short", when=exitSell)