이 전략은 RSI 지표와 이동 평균 (MA) 을 결합하여 거래 신호를 생성합니다. RSI는 시장이 과소매 또는 과소매인지 결정하는 데 사용되며, MA는 가격 추세를 결정하는 데 사용됩니다. RSI가 과소매되고 가격이 MA보다 높을 때 구매 신호가 생성됩니다. RSI가 과소매되거나 MA가 죽음의 십자가를 생성 할 때 판매 신호가 생성됩니다. 또한 전략은 보조 판단으로 스토카스틱 RSI 지표 (StochRSI) 를 도입하고 StochRSI가 신호를 생성 할 때 표시가 표시됩니다.
이 전략은 RSI와 MA의 두 가지 고전적 지표를 결합함으로써 트렌드 움직임과 과소 구매/ 과소 판매 기회를 파악할 수 있다. 동시에, StochRSI 지표를 보조 판단으로 도입하고, 전체적인 아이디어는 간단하고 명확하다. 그러나, 전략은 또한 위험 통제 조치가 부족하고 신호 정확성을 개선해야 하는 것과 같은 몇 가지 단점도 있다. 앞으로 더 많은 지표를 도입하고, 신호 규칙을 최적화하고, 위험 제어 모듈을 추가하여 더 강력한 수익을 얻기 위해 전략을 개선할 수 있다.
/*backtest start: 2023-05-22 00:00:00 end: 2024-05-27 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("RSI Strategy with Customizable MA and StochRSI Alert", overlay=true) // กำหนดค่า RSI สำหรับการเปิดสัญญาณซื้อและขาย rsiOverbought = input(70, title="RSI Overbought Level") rsiOversold = input(30, title="RSI Oversold Level") // เลือกชนิดของเส้นค่าเฉลี่ยเคลื่อนที่ maType = input.string("EMA", title="MA Type", options=["EMA", "SMA", "HMA", "WMA"]) // กำหนดค่าเส้นค่าเฉลี่ยเคลื่อนที่ maShortLength = input(12, title="MA Short Length") maLongLength = input(26, title="MA Long Length") // เลือกการแสดงผลของเส้นค่าเฉลี่ยเคลื่อนที่ showShortMA = input(true, title="Show Short Moving Average") showLongMA = input(true, title="Show Long Moving Average") // ฟังก์ชันสำหรับเลือกชนิดของเส้นค่าเฉลี่ยเคลื่อนที่ f_ma(src, length, type) => switch type "SMA" => ta.sma(src, length) "EMA" => ta.ema(src, length) "HMA" => ta.hma(src, length) "WMA" => ta.wma(src, length) // คำนวณค่าเส้นค่าเฉลี่ยเคลื่อนที่ maShort = showShortMA ? f_ma(close, maShortLength, maType) : na maLong = showLongMA ? f_ma(close, maLongLength, maType) : na // คำนวณค่า RSI rsiValue = ta.rsi(close, 14) // สร้างสัญญาณซื้อและขาย buySignal = (rsiValue > rsiOverbought and ((showShortMA and showLongMA and close > maShort and maShort > maLong) or (showShortMA and not showLongMA and close > maShort) or (showLongMA and not showShortMA and close > maLong))) sellSignal = (showShortMA and showLongMA and ta.crossover(maLong, maShort)) or (showShortMA and not showLongMA and ta.crossover(maShort, close)) or (showLongMA and not showShortMA and ta.crossover(maLong, close)) // แสดงค่าเส้นค่าเฉลี่ยเคลื่อนที่บนกราฟ plot(maShort, color=color.red, title="MA Short") plot(maLong, color=color.green, title="MA Long") // คำนวณค่า Stochastic RSI smoothK = 3 smoothD = 3 RSIlen = 14 STOlen = 14 SRsrc = close OSlevel = 30 OBlevel = 70 rsi1 = ta.rsi(SRsrc, RSIlen) k = ta.sma(ta.stoch(rsi1, rsi1, rsi1, STOlen), smoothK) d = ta.sma(k, smoothD) stochRSIOverbought = OBlevel stochRSIOversold = OSlevel stochRSIBuyAlert = ta.crossover(k, stochRSIOversold) stochRSISellAlert = ta.crossunder(k, stochRSIOverbought) // สร้างคำสั่งซื้อและขายเมื่อมีสัญญาณจาก RSI และ MA เท่านั้น if (buySignal) strategy.entry("Buy", strategy.long) if (sellSignal) strategy.close("Buy") // แสดงสัญญาณเตือนจาก Stochastic RSI บนกราฟ plotshape(series=stochRSIBuyAlert, location=location.belowbar, color=color.green, style=shape.labelup, title="StochRSI Buy Alert") plotshape(series=stochRSISellAlert, location=location.abovebar, color=color.red, style=shape.labeldown, title="StochRSI Sell Alert") // แสดงสัญญาณซื้อและขายจาก RSI และ MA บนกราฟ plotshape(series=buySignal, location=location.top, color=color.green, style=shape.triangleup, title="RSI>70") plotshape(series=sellSignal, location=location.top, color=color.red, style=shape.triangledown, title="MA crossoverDown")