यह रणनीति एक मिश्रित ट्रेडिंग प्रणाली है जो घातीय चलती औसत (ईएमए) क्रॉसओवर और इचिमोकू क्लाउड को जोड़ती है। ईएमए क्रॉसओवर का उपयोग मुख्य रूप से प्रवृत्ति प्रारंभ संकेतों को पकड़ने और खरीद के अवसरों की पुष्टि करने के लिए किया जाता है, जबकि इचिमोकू क्लाउड का उपयोग बाजार उलटफेर की पहचान करने और बिक्री बिंदुओं को निर्धारित करने के लिए किया जाता है। बहु-आयामी तकनीकी संकेतकों के समन्वय के माध्यम से, रणनीति प्रभावी ढंग से रुझानों को पकड़ सकती है जबकि समय पर जोखिमों से बच सकती है।
यह रणनीति दो मुख्य घटकों के माध्यम से कार्य करती हैः
यह रणनीति ईएमए क्रॉसओवर और इचिमोकू क्लाउड के कार्बनिक संयोजन के माध्यम से प्रवृत्ति का अनुसरण करने और उलट पकड़ने दोनों में सक्षम एक ट्रेडिंग प्रणाली का निर्माण करती है। रणनीति डिजाइन उचित जोखिम नियंत्रण के साथ तर्कसंगत है, अच्छा व्यावहारिक अनुप्रयोग मूल्य दिखाता है। सुझाए गए अनुकूलन दिशाओं के माध्यम से, आगे सुधार के लिए जगह है। लाइव ट्रेडिंग के लिए, पहले बैकटेस्टिंग के माध्यम से उपयुक्त पैरामीटर संयोजन निर्धारित करने और वास्तविक बाजार की स्थिति के आधार पर गतिशील समायोजन करने की सिफारिश की जाती है।
/*backtest start: 2019-12-23 08:00:00 end: 2025-01-04 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("EMA Crossover Buy + Ichimoku Cloud Sell Strategy", overlay=true) // Input Parameters for the EMAs shortEmaPeriod = input.int(9, title="Short EMA Period", minval=1) longEmaPeriod = input.int(21, title="Long EMA Period", minval=1) // Input Parameters for the Ichimoku Cloud tenkanPeriod = input.int(9, title="Tenkan-Sen Period", minval=1) kijunPeriod = input.int(26, title="Kijun-Sen Period", minval=1) senkouSpanBPeriod = input.int(52, title="Senkou Span B Period", minval=1) displacement = input.int(26, title="Displacement", minval=1) // Calculate the EMAs shortEma = ta.ema(close, shortEmaPeriod) longEma = ta.ema(close, longEmaPeriod) // Ichimoku Cloud Calculations tenkanSen = ta.sma(close, tenkanPeriod) kijunSen = ta.sma(close, kijunPeriod) senkouSpanA = ta.sma(tenkanSen + kijunSen, 2) senkouSpanB = ta.sma(close, senkouSpanBPeriod) chikouSpan = close[displacement] // Plot the EMAs on the chart plot(shortEma, color=color.green, title="Short EMA") plot(longEma, color=color.red, title="Long EMA") // Plot the Ichimoku Cloud plot(tenkanSen, color=color.blue, title="Tenkan-Sen") plot(kijunSen, color=color.red, title="Kijun-Sen") plot(senkouSpanA, color=color.green, title="Senkou Span A", offset=displacement) plot(senkouSpanB, color=color.purple, title="Senkou Span B", offset=displacement) plot(chikouSpan, color=color.orange, title="Chikou Span", offset=-displacement) // Buy Condition: Short EMA crosses above Long EMA buyCondition = ta.crossover(shortEma, longEma) // Sell Condition: Tenkan-Sen crosses below Kijun-Sen, and price is below the cloud sellCondition = ta.crossunder(tenkanSen, kijunSen) and close < senkouSpanA and close < senkouSpanB // Plot Buy and Sell signals plotshape(series=buyCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(series=sellCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // Execute Buy and Sell Orders if (buyCondition) strategy.entry("Buy", strategy.long) if (sellCondition) strategy.entry("Sell", strategy.short) // Optional: Add Stop Loss and Take Profit (risk management) stopLossPercentage = input.float(1.5, title="Stop Loss Percentage", minval=0.1) / 100 takeProfitPercentage = input.float(3.0, title="Take Profit Percentage", minval=0.1) / 100 longStopLoss = close * (1 - stopLossPercentage) longTakeProfit = close * (1 + takeProfitPercentage) shortStopLoss = close * (1 + stopLossPercentage) shortTakeProfit = close * (1 - takeProfitPercentage) strategy.exit("Take Profit/Stop Loss", "Buy", stop=longStopLoss, limit=longTakeProfit) strategy.exit("Take Profit/Stop Loss", "Sell", stop=shortStopLoss, limit=shortTakeProfit)