यह एक ट्रेंड फॉलो करने वाली रणनीति है जो एक्सपोनेंशियल मूविंग एवरेज (ईएमए) और रिलेटिव स्ट्रेंथ इंडेक्स (आरएसआई) को जोड़ती है। यह रणनीति बाजार के रुझानों को प्रभावी ढंग से पकड़ने के लिए आरएसआई ओवरबॉट/ओवरसोल्ड स्तरों और आरएसआई विचलन को शामिल करते हुए तेजी से और धीमी ईएमए के क्रॉसओवर की निगरानी करके ट्रेडिंग सिग्नल की पहचान करती है। 1 घंटे के टाइमफ्रेम पर काम करते हुए, यह कई तकनीकी संकेतक सत्यापन के माध्यम से ट्रेडिंग सटीकता को बढ़ाता है।
मूल तर्क में निम्नलिखित प्रमुख तत्व शामिल हैंः 1. प्रवृत्ति की दिशा निर्धारित करने के लिए 9-अवधि और 26-अवधि ईएमए का उपयोग करता है, जब तेज रेखा धीमी रेखा से ऊपर होती है तो अपट्रेंड इंगित किया जाता है 2. लंबे और छोटे संकेतों के लिए सीमा के रूप में 65 और 35 के साथ 14-अवधि आरएसआई का उपयोग करता है 3. आरएसआई उच्च/निम्न के साथ मूल्य उच्च/निम्न की तुलना करके 1 घंटे के समय सीमा पर आरएसआई विचलन का पता लगाता है 4. लंबी प्रविष्टि के लिए आवश्यक हैः धीमी ईएमए के ऊपर तेज ईएमए, 65 से अधिक आरएसआई और कोई मंदी आरएसआई विचलन नहीं 5. शॉर्ट एंट्री के लिए आवश्यक हैः धीमी ईएमए से नीचे तेज ईएमए, 35 से नीचे आरएसआई और कोई तेजी से आरएसआई विचलन नहीं
यह रणनीति चलती औसत, गति संकेतक और विचलन विश्लेषण को मिलाकर एक अपेक्षाकृत पूर्ण व्यापार प्रणाली का निर्माण करती है। यह गलत निर्णय जोखिम को प्रभावी ढंग से कम करने के लिए कई संकेत सत्यापन पर जोर देती है। जबकि कुछ अंतर्निहित देरी है, रणनीति पैरामीटर अनुकूलन और जोखिम प्रबंधन में सुधार के माध्यम से व्यावहारिक मूल्य रखती है।
/*backtest start: 2024-12-10 00:00:00 end: 2025-01-08 08:00:00 period: 1h basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("EMA9_RSI_Strategy_LongShort", overlay=true) // Parameters fastLength = input.int(9, minval=1, title="Fast EMA Length") slowLength = input.int(26, minval=1, title="Slow EMA Length") rsiPeriod = input.int(14, minval=1, title="RSI Period") rsiLevelLong = input.int(65, minval=1, title="RSI Level (Long)") rsiLevelShort = input.int(35, minval=1, title="RSI Level (Short)") // Define 1-hour timeframe timeframe_1h = "60" // Fetch 1-hour data high_1h = request.security(syminfo.tickerid, timeframe_1h, high) low_1h = request.security(syminfo.tickerid, timeframe_1h, low) rsi_1h = request.security(syminfo.tickerid, timeframe_1h, ta.rsi(close, rsiPeriod)) // Current RSI rsi = ta.rsi(close, rsiPeriod) // Find highest/lowest price and corresponding RSI in the 1-hour timeframe highestPrice_1h = ta.highest(high_1h, 1) // ราคาสูงสุดใน 1 ช่วงของ timeframe 1 ชั่วโมง lowestPrice_1h = ta.lowest(low_1h, 1) // ราคาต่ำสุดใน 1 ช่วงของ timeframe 1 ชั่วโมง highestRsi_1h = ta.valuewhen(high_1h == highestPrice_1h, rsi_1h, 0) lowestRsi_1h = ta.valuewhen(low_1h == lowestPrice_1h, rsi_1h, 0) // Detect RSI Divergence for Long bearishDivLong = high > highestPrice_1h and rsi < highestRsi_1h bullishDivLong = low < lowestPrice_1h and rsi > lowestRsi_1h divergenceLong = bearishDivLong or bullishDivLong // Detect RSI Divergence for Short (switch to low price for divergence check) bearishDivShort = low > lowestPrice_1h and rsi < lowestRsi_1h bullishDivShort = high < highestPrice_1h and rsi > highestRsi_1h divergenceShort = bearishDivShort or bullishDivShort // Calculate EMA emaFast = ta.ema(close, fastLength) emaSlow = ta.ema(close, slowLength) // Long Conditions longCondition = emaFast > emaSlow and rsi > rsiLevelLong and not divergenceLong // Short Conditions shortCondition = emaFast < emaSlow and rsi < rsiLevelShort and not divergenceShort // Plot conditions plotshape(longCondition, title="Buy", location=location.belowbar, color=color.green, style=shape.labelup, text="Buy") plotshape(shortCondition, title="Sell", location=location.abovebar, color=color.red, style=shape.labeldown, text="Sell") // Execute the strategy if (longCondition) strategy.entry("Long", strategy.long, comment="entry long") if (shortCondition) strategy.entry("Short", strategy.short, comment="entry short") // Alert alertcondition(longCondition, title="Buy Signal", message="Buy signal triggered!") alertcondition(shortCondition, title="Sell Signal", message="Sell signal triggered!")