रिवर्स ओपनिंग एंग्लफिंग रणनीति एक सरल इंट्राडे ट्रेडिंग रणनीति है जो खुलने के बाद पहली मोमबत्ती पर आधारित है। इस रणनीति का मुख्य विचार हर दिन खुलने के बाद दिखाई देने वाली पहली मोमबत्ती के अपट्रेंड या डाउनट्रेंड का न्याय करना है, और काउंटर ऑपरेशन करना है। यदि पहली मोमबत्ती एक लाल यांग लाइन है, तो लंबी जाएं; यदि पहली मोमबत्ती एक हरी यिन लाइन है, तो शॉर्ट जाएं। रणनीति भी स्थिति से बाहर निकलने के लिए स्टॉप लॉस और लाभ लेने के तंत्र स्थापित करती है।
इस रणनीति के पीछे का सिद्धांत खुलने के बाद पहली मोमबत्ती की ख़ासियत है। जब बाजार खुलता है, तो लॉन्ग और शॉर्ट्स की ताकतें सबसे तीव्र रूप से टकरा जाती हैं, और उलट की संभावना अपेक्षाकृत बड़ी होती है। पहली मोमबत्ती के अपट्रेंड या डाउनट्रेंड का न्याय करना और काउंटर ऑपरेशन करना इस रणनीति का मूल विचार है।
विशेष रूप से, एक नए दिन के खुलने के बाद, रणनीति पहले मोमबत्ती के उद्घाटन मूल्य, समापन मूल्य और मूल्य परिवर्तन को रिकॉर्ड करेगी। यदि उद्घाटन मूल्य समापन मूल्य (हरी यिन लाइन) से अधिक है, तो इसका मतलब है कि भालू ने जीता है और हमें लंबा होना चाहिए; यदि उद्घाटन मूल्य समापन मूल्य (लाल यांग लाइन) से कम है, तो इसका मतलब है कि बैल ने जीता है और हमें छोटा होना चाहिए। ऐसे काउंटर ऑपरेशन करके, रणनीति खोलने के बाद उलट अवसरों को पकड़ने का प्रयास करती है।
इस बीच, रणनीति में लंबी और छोटी स्थिति के जोखिमों और लाभों को नियंत्रित करने के लिए, अत्यधिक नुकसान या समय से पहले लाभ लेने से बचने के लिए लंबी स्टॉप लॉस कीमत, लंबी लाभ लेने की कीमत, छोटी स्टॉप लॉस कीमत और छोटी लाभ लेने की कीमत सहित स्टॉप लॉस और लाभ लेने की तंत्र भी स्थापित किए गए हैं।
रिवर्स ओपनिंग एंगुल्फिंग रणनीति के निम्नलिखित फायदे हैंः
रिवर्स ओपनिंग एग्लोफिंग रणनीति में भी कुछ जोखिम हैं, जिनमें मुख्य रूप से निम्नलिखित शामिल हैंः
रिवर्स ओपनिंग एंगुलिंग रणनीति को निम्नलिखित पहलुओं में अनुकूलित किया जा सकता हैः
रिवर्स ओपनिंग एंग्लफिंग स्ट्रेटेजी (Reverse Opening Engulfing Strategy) में पहले कैंडलस्टिक की दिशा का न्याय करके और काउंटर ऑपरेशन करके खोलने के बाद रिवर्स के अवसरों को पकड़ने का प्रयास किया जाता है। रणनीति का विचार कम भागीदारी लागत के साथ सरल है, और इसका कुछ व्यावहारिक मूल्य है। लेकिन हमें जोखिमों के बारे में भी सचेत होना चाहिए, और इसे अधिक मजबूत और विश्वसनीय बनाने के लिए अभ्यास में रणनीति को लगातार सुधारना और अनुकूलित करना चाहिए।
/*backtest start: 2023-10-22 00:00:00 end: 2023-11-21 00:00:00 period: 3h 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/ // © vikris //@version=4 strategy("[VJ]First Candle Strategy", overlay = true,calc_on_every_tick = true,default_qty_type=strategy.percent_of_equity,default_qty_value=100,initial_capital=750,commission_type=strategy.commission.percent, commission_value=0.02) // ********** Strategy inputs - Start ********** // Used for intraday handling // Session value should be from market start to the time you want to square-off // your intraday strategy // Important: The end time should be at least 2 minutes before the intraday // square-off time set by your broker var i_marketSession = input(title="Market session", type=input.session, defval="0915-1455", confirm=true) // Make inputs that set the take profit % (optional) longProfitPerc = input(title="Long Take Profit (%)", type=input.float, minval=0.0, step=0.1, defval=1) * 0.01 shortProfitPerc = input(title="Short Take Profit (%)", type=input.float, minval=0.0, step=0.1, defval=1) * 0.01 // Set stop loss level with input options (optional) longLossPerc = input(title="Long Stop Loss (%)", type=input.float, minval=0.0, step=0.1, defval=0.5) * 0.01 shortLossPerc = input(title="Short Stop Loss (%)", type=input.float, minval=0.0, step=0.1, defval=0.5) * 0.01 // ********** Strategy inputs - End ********** // ********** Supporting functions - Start ********** // A function to check whether the bar or period is in intraday session barInSession(sess) => time(timeframe.period, sess) != 0 // Figure out take profit price longExitPrice = strategy.position_avg_price * (1 + longProfitPerc) shortExitPrice = strategy.position_avg_price * (1 - shortProfitPerc) // Determine stop loss price longStopPrice = strategy.position_avg_price * (1 - longLossPerc) shortStopPrice = strategy.position_avg_price * (1 + shortLossPerc) // ********** Supporting functions - End ********** // ********** Strategy - Start ********** // See if intraday session is active bool intradaySession = barInSession(i_marketSession) // Trade only if intraday session is active //=================Strategy logic goes in here=========================== // If start of the daily session changed, then it's first bar of the new session isNewDay = time("D") != time("D")[1] var firstBarCloseValue = close var firstBarOpenValue = open if isNewDay firstBarCloseValue := close firstBarOpenValue := open greenCandle = firstBarOpenValue < firstBarCloseValue redCandle = firstBarOpenValue > firstBarCloseValue buy = redCandle sell = greenCandle // plot(firstBarCloseValue) // plot(firstBarOpenValue) //Final Long/Short Condition longCondition = buy shortCondition =sell //Long Strategy - buy condition and exits with Take profit and SL if (longCondition and intradaySession) stop_level = longStopPrice profit_level = longExitPrice strategy.entry("My Long Entry Id", strategy.long) strategy.exit("TP/SL", "My Long Entry Id", stop=stop_level, limit=profit_level) //Short Strategy - sell condition and exits with Take profit and SL if (shortCondition and intradaySession) stop_level = shortStopPrice profit_level = shortExitPrice strategy.entry("My Short Entry Id", strategy.short) strategy.exit("TP/SL", "My Short Entry Id", stop=stop_level, limit=profit_level) // Square-off position (when session is over and position is open) squareOff = (not intradaySession) and (strategy.position_size != 0) strategy.close_all(when = squareOff, comment = "Square-off") // ********** Strategy - End **********