यह रणनीति कई चिकनी चलती औसत पर आधारित एक प्रवृत्ति-अनुसरण प्रणाली है, जो आरएसआई गति संकेतक, एटीआर अस्थिरता संकेतक और 200-अवधि ईएमए प्रवृत्ति फिल्टर को जोड़ते हुए बाजार शोर को फ़िल्टर करने के लिए ट्रिपल चिकनीकरण का उपयोग करती है। यह रणनीति 1 घंटे की समय सीमा पर काम करती है, जो संस्थागत व्यापार व्यवहार के साथ संरेखित करते हुए प्रभावी रूप से व्यापार आवृत्ति और प्रवृत्ति विश्वसनीयता को संतुलित करती है।
इस रणनीति का मूल उद्देश्य कीमतों के तीन गुना समतलकरण के माध्यम से एक मुख्य प्रवृत्ति रेखा का निर्माण करना और कम अवधि की संकेत रेखा के साथ क्रॉसओवर के माध्यम से व्यापार संकेत उत्पन्न करना है। व्यापार संकेतों को एक साथ निम्नलिखित शर्तों को पूरा करना चाहिएः 1. 200EMA के सापेक्ष मूल्य स्थिति मुख्य प्रवृत्ति दिशा की पुष्टि करती है 2. आरएसआई संकेतक की स्थिति गति की पुष्टि करती है 3. एटीआर संकेतक पर्याप्त अस्थिरता की पुष्टि करता है 4. ट्रिपल-स्मूथ एमए के साथ सिग्नल लाइन क्रॉसओवर विशिष्ट प्रवेश बिंदुओं की पुष्टि करता है स्टॉप-लॉस एटीआर आधारित गतिशील स्टॉप का उपयोग करता है, जबकि लाभ लेने के लिए अनुकूल जोखिम-लाभ अनुपात सुनिश्चित करने के लिए 2x एटीआर पर सेट किया जाता है।
यह एक पूर्ण संरचना और कठोर तर्क के साथ एक प्रवृत्ति-अनुसरण रणनीति है। कई चिकनाई प्रसंस्करण और कई पुष्टिकरण तंत्रों के माध्यम से, यह प्रभावी रूप से व्यापार संकेतों की विश्वसनीयता में सुधार करता है। गतिशील जोखिम प्रबंधन तंत्र अच्छी अनुकूलन क्षमता प्रदान करता है। हालांकि कुछ देरी है, रणनीति में अभी भी पैरामीटर अनुकूलन और अतिरिक्त सहायक संकेतकों के माध्यम से सुधार के लिए महत्वपूर्ण जगह है।
/*backtest start: 2024-12-17 00:00:00 end: 2025-01-16 00:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}] */ //@version=6 strategy("Optimized Triple Smoothed MA Crossover Strategy", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=200) // === Input Settings === slength = input.int(7, "Main Smoothing Length", group="Moving Average Settings") siglen = input.int(12, "Signal Length", group="Moving Average Settings") src = input.source(close, "Data Source", group="Moving Average Settings") mat = input.string("EMA", "Triple Smoothed MA Type", ["EMA", "SMA", "RMA", "WMA"], group="Moving Average Settings") mat1 = input.string("EMA", "Signal Type", ["EMA", "SMA", "RMA", "WMA"], group="Moving Average Settings") // === Trend Confirmation (Higher Timeframe Filter) === useTrendFilter = input.bool(true, "Enable Trend Filter (200 EMA)", group="Trend Confirmation") trendMA = ta.ema(close, 200) // === Momentum Filter (RSI Confirmation) === useRSIFilter = input.bool(true, "Enable RSI Confirmation", group="Momentum Confirmation") rsi = ta.rsi(close, 14) rsiThreshold = input.int(50, "RSI Threshold", group="Momentum Confirmation") // === Volatility Filter (ATR) === useATRFilter = input.bool(true, "Enable ATR Filter", group="Volatility Filtering") atr = ta.atr(14) atrMa = ta.sma(atr, 14) // === Risk Management (ATR-Based Stop Loss) === useAdaptiveSL = input.bool(true, "Use ATR-Based Stop Loss", group="Risk Management") atrMultiplier = input.float(1.5, "ATR Multiplier for SL", minval=0.5, maxval=5, group="Risk Management") takeProfitMultiplier = input.float(2, "Take Profit Multiplier", group="Risk Management") // === Moving Average Function === ma(source, length, MAtype) => switch MAtype "SMA" => ta.sma(source, length) "EMA" => ta.ema(source, length) "RMA" => ta.rma(source, length) "WMA" => ta.wma(source, length) // === Triple Smoothed Calculation === tripleSmoothedMA = ma(ma(ma(src, slength, mat), slength, mat), slength, mat) signalLine = ma(tripleSmoothedMA, siglen, mat1) // === Crossovers (Entry Signals) === bullishCrossover = ta.crossunder(signalLine, tripleSmoothedMA) bearishCrossover = ta.crossover(signalLine, tripleSmoothedMA) // === Additional Confirmation Conditions === trendLongCondition = not useTrendFilter or (close > trendMA) // Only long if price is above 200 EMA trendShortCondition = not useTrendFilter or (close < trendMA) // Only short if price is below 200 EMA rsiLongCondition = not useRSIFilter or (rsi > rsiThreshold) // RSI above 50 for longs rsiShortCondition = not useRSIFilter or (rsi < rsiThreshold) // RSI below 50 for shorts atrCondition = not useATRFilter or (atr > atrMa) // ATR must be above its MA for volatility confirmation // === Final Trade Entry Conditions === longCondition = bullishCrossover and trendLongCondition and rsiLongCondition and atrCondition shortCondition = bearishCrossover and trendShortCondition and rsiShortCondition and atrCondition // === ATR-Based Stop Loss & Take Profit === longSL = close - (atr * atrMultiplier) longTP = close + (atr * takeProfitMultiplier) shortSL = close + (atr * atrMultiplier) shortTP = close - (atr * takeProfitMultiplier) // === Strategy Execution === if longCondition strategy.entry("Long", strategy.long) strategy.exit("Long Exit", from_entry="Long", stop=longSL, limit=longTP) if shortCondition strategy.entry("Short", strategy.short) strategy.exit("Short Exit", from_entry="Short", stop=shortSL, limit=shortTP) // === Plots === plot(tripleSmoothedMA, title="Triple Smoothed MA", color=color.blue) plot(signalLine, title="Signal Line", color=color.red) plot(trendMA, title="200 EMA", color=color.gray) // === Alerts === alertcondition(longCondition, title="Bullish Signal", message="Triple Smoothed MA Bullish Crossover Confirmed") alertcondition(shortCondition, title="Bearish Signal", message="Triple Smoothed MA Bearish Crossover Confirmed")