दोहरे संकेतक सफलता रणनीति व्यापार के लिए कम खरीद और उच्च बिक्री प्राप्त करने के लिए आरएसआई संकेतक और समापन मूल्य संकेतक को जोड़ती है। यह रणनीति कम पॉलबैक जोखिम के साथ सरल और व्यावहारिक है और मध्यम और दीर्घकालिक होल्ड के लिए उपयुक्त है।
रणनीति मुख्य रूप से निम्नलिखित दो आकलन संकेतकों पर आधारित है:
प्रवेश की शर्त ओवरसोल्ड आरएसआई है, जो इंगित करती है कि स्टॉक का अत्यधिक कम मूल्य है और इसमें एक मजबूत उलट क्षमता है। बाहर निकलने की शर्त यह है कि समापन मूल्य पिछले दिन की उच्चतम कीमत को तोड़ता है, जो इंगित करता है कि स्टॉक तेजी की प्रवृत्ति में प्रवेश कर रहा है और मुनाफे को उचित रूप से लिया जाना चाहिए।
दोहरे संकेतक की सफलता की रणनीति के निम्नलिखित फायदे हैंः
इस रणनीति में कुछ जोखिम भी हैं:
उपरोक्त जोखिमों से आरएसआई मापदंडों के अनुकूलन, बाजार स्थितियों के मूल्यांकन और निर्णय के लिए अन्य संकेतकों के उपयोग से बचा जा सकता है।
इस रणनीति के मुख्य अनुकूलन दिशाओं में निम्नलिखित पहलुओं पर ध्यान केंद्रित किया गया हैः
/*backtest start: 2023-12-01 00:00:00 end: 2023-12-31 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © hobbiecode // If RSI(2) is less than 15, then enter at the close. // Exit on close if today’s close is higher than yesterday’s high. //@version=5 strategy("Hobbiecode - RSI + Close previous day", overlay=true) // RSI parameters rsi_period = 2 rsi_lower = 15 // Calculate RSI rsi_val = ta.rsi(close, rsi_period) // Check if RSI is lower than the defined threshold if (rsi_val < rsi_lower) strategy.entry("Buy", strategy.long) // Check if today's close is higher than yesterday's high if (strategy.position_size > 0 and close > ta.highest(high[1], 1)) strategy.close("Buy") // Plot RSI on chart plot(rsi_val, title="RSI", color=color.red) hline(rsi_lower, title="Oversold Level", color=color.blue)