यह रणनीति एक मात्रात्मक ट्रेडिंग प्रणाली है जो एक्सेलेरेटर ऑसिलेटर (एसी) और स्टोकैस्टिक संकेतकों को जोड़ती है। यह संभावित रुझान उलटों की भविष्यवाणी करने के लिए मूल्य और तकनीकी संकेतकों के बीच विचलन की पहचान करके बाजार गति शिफ्ट को कैप्चर करती है। रणनीति में सिग्नल विश्वसनीयता को बढ़ाने के लिए सरल चलती औसत (एसएमए) और सापेक्ष शक्ति सूचकांक (आरएसआई) भी शामिल है, जोखिम नियंत्रण के लिए निश्चित लाभ और स्टॉप-लॉस स्तरों के साथ।
मूल तर्क कई तकनीकी संकेतकों के तालमेल पर आधारित है। एसी की गणना मूल्य मध्य बिंदुओं के 5-अवधि और 34-अवधि एसएमए के बीच के अंतर का उपयोग करके की जाती है, इसके एन-अवधि चलती औसत को घटाकर। स्टोकैस्टिक के और डी मानों की गणना विचलन संकेतों की पुष्टि करने के लिए की जाती है। बुलिश विचलन तब बनता है जब मूल्य नए निम्न बनाता है जबकि एसी बढ़ता है; मंदी विचलन तब बनता है जब मूल्य नए उच्च बनाता है जबकि एसी गिरता है। आरएसआई को एक अतिरिक्त पुष्टि संकेतक के रूप में शामिल किया जाता है, सिग्नल सटीकता में सुधार के लिए कई संकेतकों के क्रॉस-प्रमाणन का उपयोग करके।
यह एक मात्रात्मक ट्रेडिंग रणनीति है जो कई तकनीकी संकेतकों को एकीकृत करती है, विचलन संकेतों के माध्यम से बाजार के मोड़ बिंदुओं को पकड़ती है। इसकी ताकत कई संकेतकों और व्यापक जोखिम नियंत्रण प्रणाली के क्रॉस-वैलिडेशन में निहित है, जबकि झूठे ब्रेकआउट और पैरामीटर अनुकूलन पर ध्यान दिया जाना चाहिए। निरंतर अनुकूलन और सुधार के माध्यम से, रणनीति विभिन्न बाजार वातावरण में स्थिर प्रदर्शन बनाए रखने के लिए वादा करती है।
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-09 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © JayQwae //@version=5 strategy("Enhanced AC Divergence Strategy with Stochastic Divergence", overlay=true) // Input settings tp_pips = input.float(0.0020, "Take Profit (in price)", step=0.0001) sl_pips = input.float(0.0040, "Stop Loss (in price)", step=0.0001) // 40 pips ac_length = input.int(5, "AC Length") rsi_length = input.int(14, "RSI Length") stoch_k = input.int(14, "Stochastic K Length") stoch_d = input.int(3, "Stochastic D Smoothing") stoch_ob = input.float(80, "Stochastic Overbought Level") stoch_os = input.float(20, "Stochastic Oversold Level") // Accelerator Oscillator Calculation high_low_mid = (high + low) / 2 ao = ta.sma(high_low_mid, 5) - ta.sma(high_low_mid, 34) ac = ao - ta.sma(ao, ac_length) // RSI Calculation rsi = ta.rsi(close, rsi_length) // Stochastic Oscillator Calculation k = ta.sma(ta.stoch(close, high, low, stoch_k), stoch_d) d = ta.sma(k, stoch_d) // Stochastic Divergence Detection stoch_bull_div = ta.lowest(close, 5) < ta.lowest(close[1], 5) and ta.lowest(k, 5) > ta.lowest(k[1], 5) stoch_bear_div = ta.highest(close, 5) > ta.highest(close[1], 5) and ta.highest(k, 5) < ta.highest(k[1], 5) // Main Divergence Detection bullish_div = ta.lowest(close, 5) < ta.lowest(close[1], 5) and ac > ac[1] and stoch_bull_div bearish_div = ta.highest(close, 5) > ta.highest(close[1], 5) and ac < ac[1] and stoch_bear_div // Plot divergences plotshape(bullish_div, title="Bullish Divergence", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small) plotshape(bearish_div, title="Bearish Divergence", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small) // Strategy rules if (bullish_div) strategy.entry("Buy", strategy.long) strategy.exit("Take Profit/Stop Loss", "Buy", limit=close + tp_pips, stop=close - sl_pips) if (bearish_div) strategy.entry("Sell", strategy.short) strategy.exit("Take Profit/Stop Loss", "Sell", limit=close - tp_pips, stop=close + sl_pips) // Alerts if (bullish_div) alert("Bullish Divergence detected! Potential Buy Opportunity", alert.freq_once_per_bar) if (bearish_div) alert("Bearish Divergence detected! Potential Sell Opportunity", alert.freq_once_per_bar)