यह रणनीति दो घातीय चलती औसत (ईएमए) के क्रॉसओवर का उपयोग करती है, जो अलग-अलग अवधि के साथ ट्रेडिंग सिग्नल के रूप में हैं, जबकि फिक्स्ड-पॉइंट स्टॉप लॉस सेट करते हैं और लाभ स्तर लेते हैं। जब अल्पकालिक ईएमए दीर्घकालिक ईएमए के ऊपर पार करता है, तो यह एक लंबी स्थिति खोलता है; जब अल्पकालिक ईएमए दीर्घकालिक ईएमए के नीचे पार करता है, तो यह एक छोटी स्थिति खोलता है। रणनीति जोखिम को नियंत्रित करने और लाभ में लॉक करने के लिए फिक्स्ड-पॉइंट स्टॉप लॉस सेट करती है और लाभ स्तर लेती है।
दोहरी चलती औसत क्रॉसओवर स्टॉप लॉस और लाभ लेने की रणनीति एक सरल और उपयोग करने में आसान ट्रेडिंग रणनीति है जो ईएमए क्रॉसओवर के माध्यम से ट्रेडिंग सिग्नल उत्पन्न करती है जबकि जोखिम को नियंत्रित करने के लिए निश्चित-बिंदु स्टॉप लॉस सेट करती है और लाभ स्तर लेती है। रणनीति के फायदे इसके स्पष्ट तर्क, आसान कार्यान्वयन और बाजार के रुझानों को प्रभावी ढंग से पकड़ने की क्षमता में निहित हैं। हालांकि, यह झूठे संकेतों, प्रवृत्ति देरी, रेंज-बाउंड बाजारों और निश्चित स्टॉप लॉस स्तरों जैसे जोखिमों का भी सामना करती है। अनुकूलन दिशाओं में अधिक संकेतक पेश करना, पैरामीटर अनुकूलित करना, गतिशील स्टॉप लॉस, स्थिति प्रबंधन और फ़िल्टर जोड़ना शामिल है। ट्रेडर रणनीति की मजबूती और लाभप्रदता में सुधार के लिए अपनी जोखिम वरीयताओं और बाजार विशेषताओं के अनुसार रणनीति को अनुकूलित और समायोजित कर सकते हैं।
/*backtest start: 2024-05-01 00:00:00 end: 2024-05-31 23:59:59 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("EMA5 Cross EAM200 && SL/TP 50 and 200 Point Target", overlay=true) // Define input parameters for EMA lengths ema_5 = input.int(5, title="Fast EMA Length") ema_200 = input.int(200, title="Slow EMA Length") // Define input parameters for stop loss and profit target in points stopLossPoints = input.float(50, title="Stop Loss (Points)") profitTargetPoints = input.float(200, title="Profit Target (Points)") // Calculate EMAs price = close emafast = ta.ema(price, ema_5) emaslow = ta.ema(price, ema_200) // Plot EMAs on chart plot(emafast, title="5-period EMA", color=color.black) plot(emaslow, title="200-period EMA", color=color.blue) // Extra lines if needed ema_13 = input.int(13, title="13 EMA") ema_13_line = ta.ema(price, ema_13) plot(ema_13_line, title="13-period EMA", color=color.rgb(156, 39, 176, 90)) ema_20 = input.int(20, title="20 EMA") ema_20_line = ta.ema(price, ema_20) plot(ema_20_line, title="20-period EMA", color=color.red) // Define entry conditions longCondition = ta.crossover(emafast, emaslow) shortCondition = ta.crossunder(emafast, emaslow) // Counter to keep track of the number of bars since the entry var int barCount = na // Reset counter and enter long trade if (longCondition) strategy.entry("Long", strategy.long, comment="Long") barCount := 0 // Reset counter and enter short trade if (shortCondition) strategy.entry("Short", strategy.short, comment="Short") barCount := 0 // Increment counter if in trade if (strategy.opentrades > 0) barCount += 1 // Calculate entry price entryPrice = strategy.position_avg_price // Exit long trade if stop loss, profit target hit, or 200 points have been reached if (strategy.position_size > 0) strategy.exit("Take Profit/Stop Loss", "Long", stop=entryPrice - stopLossPoints, limit=entryPrice + profitTargetPoints) // Exit short trade if stop loss, profit target hit, or 200 points have been reached if (strategy.position_size < 0) strategy.exit("Take Profit/Stop Loss", "Short", stop=entryPrice + stopLossPoints, limit=entryPrice - profitTargetPoints)