यह सुपरट्रेंड इंडिकेटर, एक्सपोनेंशियल मूविंग एवरेज (ईएमए) और एवरेज ट्रू रेंज (एटीआर) पर आधारित एक ट्रेंड फॉलोअप रणनीति है। यह रणनीति कई तकनीकी संकेतकों, प्रारंभिक स्टॉप लॉस और ट्रेलिंग स्टॉप लॉस के संयोजन के माध्यम से गतिशील ट्रेंड ट्रैकिंग और जोखिम नियंत्रण प्राप्त करती है। रणनीति का मूल सुपरट्रेंड इंडिकेटर का उपयोग करके ट्रेंड दिशा में बदलाव को कैप्चर करने में निहित है, जबकि ट्रेंड की पुष्टि के लिए ईएमए का उपयोग करना और लाभ की रक्षा के लिए दोहरी स्टॉप लॉस तंत्र स्थापित करना।
यह रणनीति निम्नलिखित मुख्य घटकों पर आधारित है: प्रवृत्ति दिशा परिवर्तनों की पहचान करने के लिए सुपरट्रेंड सूचक, जिसकी गणना एटीआर अवधि 16 और कारक 3.02 के साथ की जाती है। 2. प्रवृत्ति की दिशा की पुष्टि के लिए प्रवृत्ति फिल्टर के रूप में 49-अवधि ईएमए 3. प्रत्येक व्यापार के लिए बुनियादी सुरक्षा प्रदान करने वाले 50 बिंदुओं पर निर्धारित प्रारंभिक स्टॉप लॉस 4. ट्रेलिंग स्टॉप लॉस 70 अंक लाभ के बाद सक्रिय होता है, गतिशील रूप से मूल्य परिवर्तनों को ट्रैक करता है
सिस्टम लंबे संकेत उत्पन्न करता है जब सुपरट्रेंड दिशा नीचे की ओर मुड़ती है और समापन मूल्य ईएमए से ऊपर होता है, बशर्ते कोई मौजूदा स्थिति न हो। इसके विपरीत, लघु संकेत उत्पन्न होते हैं जब सुपरट्रेंड दिशा ऊपर की ओर मुड़ती है और समापन मूल्य ईएमए से नीचे होता है।
यह एक पूर्ण ट्रेडिंग रणनीति है जिसमें कई तकनीकी संकेतकों और जोखिम नियंत्रण तंत्रों को मिलाया गया है। यह सुपरट्रेंड संकेतक के साथ प्रवृत्ति कैप्चर, ईएमए के साथ दिशा पुष्टि, दोहरे स्टॉप लॉस तंत्र के साथ अनुकूल जोखिम-इनाम अनुपात प्राप्त करता है। रणनीति की अनुकूलन क्षमता मुख्य रूप से गतिशील पैरामीटर समायोजन, बाजार वातावरण मूल्यांकन और जोखिम प्रबंधन प्रणाली में सुधार में निहित है। व्यावहारिक अनुप्रयोग में, गहन ऐतिहासिक डेटा बैकटेस्टिंग करने और विशिष्ट ट्रेडिंग साधन विशेषताओं के अनुसार मापदंडों को समायोजित करने की सिफारिश की जाती है।
/*backtest start: 2024-01-17 00:00:00 end: 2025-01-15 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=5 strategy(" nifty supertrend triton", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=100) // Input parameters atrPeriod = input.int(16, "ATR Length", step=1) factor = input.float(3.02, "Factor", step=0.01) maPeriod = input.int(49, "Moving Average Period", step=1) trailPoints = input.int(70, "Trailing Points", step=1) // Points after which trailing stop activates initialStopLossPoints = input.int(50, "Initial Stop Loss Points", step=1) // Initial stop loss of 50 points // Calculate Supertrend [_, direction] = ta.supertrend(factor, atrPeriod) // Calculate EMA ema = ta.ema(close, maPeriod) // Variables to track stop loss levels var float trailStop = na var float entryPrice = na var float initialStopLoss = na // To track the initial stop loss // Generate buy and sell signals if ta.change(direction) < 0 and close > ema if strategy.position_size == 0 // Only open a new long position if no current position strategy.entry("Buy", strategy.long) entryPrice := close // Record the entry price for the long position initialStopLoss := entryPrice - initialStopLossPoints // Set initial stop loss for long position trailStop := na // Reset trailing stop for long if ta.change(direction) > 0 and close < ema if strategy.position_size == 0 // Only open a new short position if no current position strategy.entry("Sell", strategy.short) entryPrice := close // Record the entry price for the short position initialStopLoss := entryPrice + initialStopLossPoints // Set initial stop loss for short position trailStop := na // Reset trailing stop for short // Apply initial stop loss for long positions if (strategy.position_size > 0) // Check if in a long position if close <= initialStopLoss // If the price drops to or below the initial stop loss strategy.close("Buy", "Initial Stop Loss Hit") // Exit the long position // Apply trailing stop logic for long positions if (strategy.position_size > 0) // Check if in a long position if (close - entryPrice >= trailPoints) // If the price has moved up by the threshold trailStop := na(trailStop) ? close - trailPoints : math.max(trailStop, close - trailPoints) // Adjust trailing stop upwards if not na(trailStop) and close < trailStop // If the price drops below the trailing stop strategy.close("Buy", "Trailing Stop Hit") // Exit the long position // Apply initial stop loss for short positions if (strategy.position_size < 0) // Check if in a short position if close >= initialStopLoss // If the price rises to or above the initial stop loss strategy.close("Sell", "Initial Stop Loss Hit") // Exit the short position // Apply trailing stop logic for short positions if (strategy.position_size < 0) // Check if in a short position if (entryPrice - close >= trailPoints) // If the price has moved down by the threshold trailStop := na(trailStop) ? close + trailPoints : math.min(trailStop, close + trailPoints) // Adjust trailing stop downwards if not na(trailStop) and close > trailStop // If the price rises above the trailing stop strategy.close("Sell", "Trailing Stop Hit") // Exit the short position