यह रणनीति ट्रिपल एक्सपोनेंशियल मूविंग एवरेज (टीईएमए) पर आधारित एक ट्रेंड-फॉलोइंग ट्रेडिंग सिस्टम है। यह अल्पकालिक और दीर्घकालिक टीईएमए संकेतकों के बीच क्रॉसओवर संकेतों का विश्लेषण करके बाजार के रुझानों को कैप्चर करता है, जोखिम प्रबंधन के लिए अस्थिरता-आधारित स्टॉप-लॉस को शामिल करता है। यह रणनीति 300 और 500-अवधि के टीईएमए संकेतकों का उपयोग करते हुए 5 मिनट के समय सीमा पर संचालित होती है।
रणनीति का मूल तर्क निम्नलिखित प्रमुख तत्वों पर आधारित है:
यह रणनीति एक व्यापक प्रवृत्ति-अनुसरण प्रणाली है जो गतिशील स्टॉप-लॉस के साथ जोखिम का प्रबंधन करते हुए TEMA क्रॉसओवर के माध्यम से रुझानों को पकड़ती है। रणनीति तर्क स्पष्ट है, कार्यान्वयन सीधा है, और यह अच्छी व्यावहारिकता का प्रदर्शन करता है। हालांकि, जब लाइव ट्रेडिंग करते हैं, तो बाजार वातावरण की पहचान और जोखिम नियंत्रण पर ध्यान देना चाहिए। बैकटेस्टिंग सत्यापन के बाद वास्तविक बाजार स्थितियों के आधार पर मापदंडों को अनुकूलित करने की सिफारिश की जाती है।
/*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=6 strategy("TEMA Strategy for Gold", overlay=true) // Inputs tema_short_length = input.int(300, title="Short TEMA Length") tema_long_length = input.int(500, title="Long TEMA Length") pip_value = input.float(0.10, title="Pip Value (10 pips = 1 point for Gold)") // Calculate TEMA tema_short = ta.ema(2 * ta.ema(close, tema_short_length) - ta.ema(ta.ema(close, tema_short_length), tema_short_length), tema_short_length) tema_long = ta.ema(2 * ta.ema(close, tema_long_length) - ta.ema(ta.ema(close, tema_long_length), tema_long_length), tema_long_length) // Plot TEMA plot(tema_short, color=color.blue, title="300 TEMA") plot(tema_long, color=color.red, title="500 TEMA") // Crossover conditions long_condition = ta.crossover(tema_short, tema_long) short_condition = ta.crossunder(tema_short, tema_long) // Calculate recent swing high/low swing_low = ta.lowest(low, 10) swing_high = ta.highest(high, 10) // Convert pips to price pip_adjustment = pip_value * syminfo.mintick // Long entry logic if (long_condition and strategy.position_size == 0) stop_loss_long = swing_low - pip_adjustment strategy.entry("Long", strategy.long) label.new(bar_index, swing_low, style=label.style_label_down, text="Buy", color=color.green) // Short entry logic if (short_condition and strategy.position_size == 0) stop_loss_short = swing_high + pip_adjustment strategy.entry("Short", strategy.short) label.new(bar_index, swing_high, style=label.style_label_up, text="Sell", color=color.red) // Exit logic if (strategy.position_size > 0 and short_condition) strategy.close("Long") label.new(bar_index, high, style=label.style_label_up, text="Exit Long", color=color.red) if (strategy.position_size < 0 and long_condition) strategy.close("Short") label.new(bar_index, low, style=label.style_label_down, text="Exit Short", color=color.green)