यह रणनीति बहु-अवधि चलती औसत पर आधारित एक प्रवृत्ति-अनुसरण ट्रेडिंग प्रणाली है। यह बाजार की समग्र प्रवृत्ति दिशा निर्धारित करने के लिए 89-अवधि और 21-अवधि सरल चलती औसत (एसएमए) का उपयोग करती है, जबकि विशिष्ट ट्रेडिंग संकेतों की पहचान करने के लिए 5-अवधि घातीय चलती औसत (ईएमए) के उच्च और निम्न को शामिल करती है। यह रणनीति निश्चित स्टॉप-लॉस और ट्रेलिंग टेक-प्रॉफिट तंत्र के साथ संयुक्त दोहरी स्थिति प्रबंधन दृष्टिकोण को नियोजित करती है।
मूल तर्क में निम्नलिखित प्रमुख तत्व शामिल हैंः
यह रणनीति एक व्यापक प्रवृत्ति-अनुसरण प्रणाली का प्रतिनिधित्व करती है जो लचीले स्थिति प्रबंधन और जोखिम नियंत्रण विधियों को लागू करते हुए कई-अवधि चलती औसत के माध्यम से बाजार के रुझानों को पकड़ती है। हालांकि अनुकूलन के लिए जगह है, बुनियादी ढांचा अच्छी व्यावहारिकता और स्केलेबिलिटी का प्रदर्शन करता है। रणनीति की स्थिरता को मापदंडों को समायोजित करके और विभिन्न ट्रेडिंग उपकरणों और बाजार वातावरण के लिए फ़िल्टरिंग शर्तों को जोड़कर बढ़ाया जा सकता है।
/*backtest start: 2024-11-12 00:00:00 end: 2024-12-11 08:00:00 period: 2h basePeriod: 2h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © tobiashartemink2 //@version=5 strategy("High 5 Trading Technique", overlay=true) // --- Input parameters --- sma89Length = input.int(title="SMA 89 Length", defval=89) sma21Length = input.int(title="SMA 21 Length", defval=21) ema5HighLength = input.int(title="EMA 5 High Length", defval=5) ema5LowLength = input.int(title="EMA 5 Low Length", defval=5) contracts = input.int(title="Aantal Contracten", defval=1) stopLossPoints = input.int(title="Stop Loss Points per Contract", defval=25) takeProfitPoints = input.int(title="Take Profit Points per Contract", defval=25) // --- Calculate moving averages --- sma89 = ta.sma(close, sma89Length) sma21 = ta.sma(close, sma21Length) ema5High = ta.ema(high, ema5HighLength) ema5Low = ta.ema(low, ema5LowLength) // --- Identify trend and order of moving averages --- longSetup = close > sma89 and close > sma21 and ema5High > sma21 and sma21 > sma89 shortSetup = close < sma89 and close < sma21 and ema5Low < sma21 and sma21 < sma89 // --- Entry signals --- longTrigger = longSetup and close <= ema5Low shortTrigger = shortSetup and close >= ema5High // --- Entry orders --- if (longTrigger) strategy.entry("Long 1", strategy.long, qty=contracts) strategy.entry("Long 2", strategy.long, qty=contracts) if (shortTrigger) strategy.entry("Short 1", strategy.short, qty=contracts) strategy.entry("Short 2", strategy.short, qty=contracts) // --- Stop-loss and take-profit for long positions --- if (strategy.position_size > 0) strategy.exit("Exit Long 1", "Long 1", stop=strategy.position_avg_price - stopLossPoints, limit=strategy.position_avg_price + takeProfitPoints) strategy.exit("Exit Long 2", "Long 2", stop=strategy.position_avg_price - stopLossPoints, trail_offset=takeProfitPoints, trail_points=takeProfitPoints) // --- Stop-loss and take-profit for short positions --- if (strategy.position_size < 0) strategy.exit("Exit Short 1", "Short 1", stop=strategy.position_avg_price + stopLossPoints, limit=strategy.position_avg_price - takeProfitPoints) strategy.exit("Exit Short 2", "Short 2", stop=strategy.position_avg_price + stopLossPoints, trail_offset=takeProfitPoints, trail_points=takeProfitPoints) // --- Plot moving averages --- plot(sma89, color=color.blue, linewidth=2) plot(sma21, color=color.red, linewidth=2) plot(ema5High, color=color.green, linewidth=2) plot(ema5Low, color=color.orange, linewidth=2)