यह रणनीति एक अल्पकालिक औसत प्रतिगमन ट्रेडिंग प्रणाली है जो 200-दिवसीय चलती औसत को 2-अवधि के आरएसआई संकेतक के साथ जोड़ती है। मूल अवधारणा एक ट्रिपल सत्यापन तंत्र के माध्यम से दीर्घकालिक अपट्रेंड के भीतर ओवरसोल्ड सुधार के अवसरों की पहचान करना है।
रणनीति एक ट्रिपल वैलिडेशन तंत्र का उपयोग करती हैः पहला, मूल्य को लंबी अवधि के अपट्रेंड की पुष्टि करने के लिए 200-दिवसीय चलती औसत से ऊपर होना चाहिए; दूसरा, आरएसआई को 60 से ऊपर शुरू होने वाली प्रारंभिक गिरावट के साथ लगातार तीन दिनों के लिए गिरना चाहिए; अंत में, आरएसआई को 10 से नीचे गिरना चाहिए, जो अत्यधिक ओवरसोल्ड स्थितियों को इंगित करता है। जब सभी तीन शर्तें एक साथ पूरी होती हैं, तो एक लंबा संकेत उत्पन्न होता है। जब आरएसआई 70 से ऊपर बढ़ता है, तो स्थिति बंद हो जाती है, जो ओवरबोल्ड स्थितियों को इंगित करता है।
यह रणनीति चलती औसत और आरएसआई संकेतकों के स्मार्ट संयोजन के माध्यम से एक मजबूत ट्रेडिंग प्रणाली बनाता है। जबकि ट्रिपल वैलिडेशन तंत्र प्रभावी रूप से ट्रेडिंग विश्वसनीयता में सुधार करता है, जोखिम प्रबंधन और पैरामीटर अनुकूलन पर ध्यान महत्वपूर्ण रहता है। समग्र डिजाइन अच्छा व्यावहारिक मूल्य और अनुकूलन क्षमता के साथ तर्कसंगत है।
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-11 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Larry Connors RSI 3 Strategy", overlay=false) // Define the moving averages and the RSI sma200 = ta.sma(close, 200) rsi2 = ta.rsi(close, 2) // Conditions for the strategy condition1 = close > sma200 // Close above the 200-day moving average // RSI drops three days in a row and the first day’s drop is from above 60 rsi_drop_3_days = rsi2[2] > rsi2[1] and rsi2[1] > rsi2 and rsi2[2] > 60 // The 3-day RSI drop condition condition2 = rsi_drop_3_days // The 2-period RSI is below 10 today condition3 = rsi2 < 10 // Combined buy condition buyCondition = condition1 and condition2 and condition3 // Sell condition: The 2-period RSI is above 70 sellCondition = rsi2 > 70 // Execute the buy signal when all buy conditions are met if buyCondition strategy.entry("Buy", strategy.long) // Execute the sell signal when the sell condition is met if sellCondition strategy.close("Buy") // Plotting the RSI for visual confirmation plot(rsi2, title="2-Period RSI", color=color.blue) hline(70, "Overbought (70)", color=color.red) hline(10, "Oversold (10)", color=color.green) hline(60, "RSI Drop Trigger (60)", color=color.gray) // Set background color when a position is open bgcolor(strategy.opentrades > 0 ? color.new(color.green, 50) : na)