यह रणनीति एक व्यापक ट्रेडिंग सिस्टम है जो कई प्रमुख तकनीकी संकेतकों को जोड़ती है, जिसमें दोहरी सरल चलती औसत (एसएमए) प्रणाली, चलती औसत अभिसरण विचलन (एमएसीडी), सापेक्ष शक्ति सूचकांक (आरएसआई), और प्रतिरोध स्तर विश्लेषण शामिल हैं। मूल अवधारणा बहु-आयामी तकनीकी संकेतकों के माध्यम से ट्रेडिंग संकेतों की पुष्टि करना है जबकि स्थिति प्रबंधन अनुकूलन के लिए बाजार भावना संकेतकों को शामिल करना है, जिसका अंतिम उद्देश्य जीत दरों और जोखिम-लाभ अनुपातों में सुधार करना है।
यह रणनीति अल्पकालिक (10 दिन) और दीर्घकालिक (30 दिन) सरल चलती औसत को प्राथमिक संकेत प्रणाली के रूप में नियोजित करती है। एक खरीद संकेत तब उत्पन्न होता है जब अल्पकालिक एसएमए दीर्घकालिक एसएमए के ऊपर पार हो जाता है, और एमएसीडी तेजी की गति (सिग्नल लाइन के ऊपर एमएसीडी लाइन) दिखाता है। बिक्री की स्थिति में प्रतिरोध स्तर विश्लेषण शामिल होता है, जब कीमत पिछले 20 अवधियों के उच्चतम बिंदु तक पहुंच जाती है और एमएसीडी मंदी संकेत दिखाता है तो स्थिति बंद हो जाती है। इसके अलावा, आरएसआई संकेतक स्थिति प्रबंधन के लिए एक भावना फिल्टर के रूप में कार्य करता हैः आरएसआई 70 से अधिक होने पर नुकसान पर जल्दी बाहर निकलना, और आरएसआई 30 से नीचे होने पर लाभ पर स्थिति पकड़ना।
यह रणनीति कई क्लासिक तकनीकी संकेतकों के संयोजन से एक पूर्ण ट्रेडिंग प्रणाली का निर्माण करती है। इसकी ताकत कई संकेत पुष्टि तंत्र और व्यापक जोखिम नियंत्रण प्रणाली में निहित है, हालांकि बाजार की स्थिति पर रणनीति प्रदर्शन पर प्रभाव की निगरानी की जानी चाहिए। सुझाए गए अनुकूलन दिशाओं के माध्यम से, रणनीति की स्थिरता और अनुकूलन क्षमता को और बढ़ाया जा सकता है। लाइव ट्रेडिंग में, निवेशकों को सलाह दी जाती है कि वे बाजार के बुनियादी बातों पर ध्यान देते हुए अपनी जोखिम वरीयताओं और बाजार के माहौल के अनुसार मापदंडों को समायोजित करें।
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-11 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("XAUUSD SMA with MACD & Market Sentiment (Enhanced RR)", overlay=true) // Input parameters for moving averages shortSMA_length = input.int(10, title="Short SMA Length", minval=1) longSMA_length = input.int(30, title="Long SMA Length", minval=1) // MACD settings [macdLine, signalLine, _] = ta.macd(close, 12, 26, 9) // Lookback period for identifying major resistance (swing highs) resistance_lookback = input.int(20, title="Resistance Lookback Period", tooltip="Lookback period for identifying major resistance") // Calculate significant resistance (local swing highs over the lookback period) major_resistance = ta.highest(close, resistance_lookback) // Calculate SMAs shortSMA = ta.sma(close, shortSMA_length) longSMA = ta.sma(close, longSMA_length) // RSI for market sentiment rsiLength = input.int(14, title="RSI Length", minval=1) rsiOverbought = input.int(70, title="RSI Overbought Level", minval=50, maxval=100) rsiOversold = input.int(30, title="RSI Oversold Level", minval=0, maxval=50) rsi = ta.rsi(close, rsiLength) // Define buy condition based on SMA and MACD buyCondition = ta.crossover(shortSMA, longSMA) and macdLine > signalLine // Define sell condition: only sell if price is at or above the identified major resistance sellCondition = close >= major_resistance and macdLine < signalLine // Define sentiment-based exit conditions closeEarlyCondition = strategy.position_size < 0 and rsi > rsiOverbought // Close losing trade early if RSI is overbought holdWinningCondition = strategy.position_size > 0 and rsi < rsiOversold // Hold winning trade if RSI is oversold // Execute strategy: Enter long position when buy conditions are met if (buyCondition) strategy.entry("Buy", strategy.long) // Close the position when the sell condition is met (price at resistance) if (sellCondition and not holdWinningCondition) strategy.close("Buy") // Close losing trades early if sentiment is against us if (closeEarlyCondition) strategy.close("Buy") // Visual cues for 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") // Add alert for buy condition alertcondition(buyCondition, title="Buy Signal Activated", message="Buy signal activated: Short SMA has crossed above Long SMA and MACD is bullish.") // Add alert for sell condition to notify when price hits major resistance alertcondition(sellCondition, title="Sell at Major Resistance", message="Sell triggered at major resistance level.") // Add alert for early close condition (for losing trades) alertcondition(closeEarlyCondition, title="Close Losing Trade Early", message="Sentiment is against your position, close trade.") // Add alert for holding winning condition (optional) alertcondition(holdWinningCondition, title="Hold Winning Trade", message="RSI indicates oversold conditions, holding winning trade.")