यह रणनीति ट्रेडिंग सिग्नल उत्पन्न करने के लिए आरएसआई संकेतक को चलती औसत (एमए) के साथ जोड़ती है। आरएसआई का उपयोग यह निर्धारित करने के लिए किया जाता है कि बाजार ओवरबॉट या ओवरसोल्ड है, जबकि एमए का उपयोग मूल्य रुझानों को निर्धारित करने के लिए किया जाता है। एक खरीद संकेत तब उत्पन्न होता है जब आरएसआई ओवरबोल्ड होता है और कीमत एमए से ऊपर होती है; एक बिक्री संकेत तब उत्पन्न होता है जब आरएसआई ओवरसोल्ड होता है या जब एमए एक मृत्यु क्रॉस का उत्पादन करता है। इसके अलावा, रणनीति एक सहायक निर्णय के रूप में स्टोकैस्टिक आरएसआई संकेतक (स्टोकआरएसआई) पेश करती है, और जब स्टोकआरएसआई एक संकेत उत्पन्न करता है तो चार्ट पर एक संकेत चिह्नित किया जाएगा।
आरएसआई और एमए के दो क्लासिक संकेतकों को मिलाकर, यह रणनीति प्रवृत्ति आंदोलनों और ओवरबॉट / ओवरसोल्ड अवसरों को पकड़ सकती है। साथ ही, यह एक सहायक निर्णय के रूप में स्टॉकआरएसआई संकेतक को पेश करती है, और समग्र विचार सरल और स्पष्ट है। हालांकि, रणनीति में कुछ कमियां भी हैं, जैसे जोखिम नियंत्रण उपायों की कमी और संकेत सटीकता में सुधार की आवश्यकता। भविष्य में, अधिक संकेतकों को पेश करके, संकेत नियमों को अनुकूलित करके, जोखिम नियंत्रण मॉड्यूल आदि जोड़कर रणनीति में सुधार किया जा सकता है, ताकि अधिक मजबूत रिटर्न प्राप्त किया जा सके।
/*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")