बाइबिट ईएमए आरएसआई ट्रेंड-फॉलोइंग एंड मोमेंटम रणनीति एक मात्रात्मक ट्रेडिंग रणनीति है जो घातीय चलती औसत (ईएमए) और सापेक्ष शक्ति सूचकांक (आरएसआई) को जोड़ती है। रणनीति बाजार के रुझानों को निर्धारित करने के लिए अलग-अलग अवधि के साथ दो ईएमए और रुझानों की वैधता की पुष्टि करने के लिए आरएसआई संकेतक का उपयोग करती है। जब तेज ईएमए धीमी ईएमए के ऊपर पार करता है और आरएसआई एक विशिष्ट निचली सीमा से नीचे होता है, तो रणनीति एक लंबा संकेत उत्पन्न करती है। इसके विपरीत, जब तेज ईएमए धीमी ईएमए के नीचे पार करता है और आरएसआई एक विशिष्ट ऊपरी सीमा से ऊपर होता है, तो रणनीति एक छोटा संकेत उत्पन्न करती है। रणनीति में बाइबिट खाते के स्तर के आधार पर अलग-अलग कमीशन प्रतिशत और जोखिम को प्रभावी ढंग से प्रबंधित करने के लिए अंतर्निहित लाभ और हानि बंद करने के कार्य शामिल हैं।
बाइबिट ईएमए आरएसआई ट्रेंड-फॉलोइंग और मोमेंटम रणनीति एक मात्रात्मक ट्रेडिंग रणनीति है जो ट्रेंड-फॉलोइंग और मोमेंटम संकेतकों को जोड़ती है। ईएमए और आरएसआई का एक साथ उपयोग करके, यह प्रभावी रूप से बाजार के रुझानों को पकड़ सकती है। रणनीति में अंतर्निहित लाभ और स्टॉप लॉस फ़ंक्शन शामिल हैं और बाइबिट खाते के स्तर के आधार पर कमीशन प्रतिशत निर्धारित करते हैं, प्रभावी रूप से जोखिम का प्रबंधन करते हैं और विभिन्न उपयोगकर्ताओं की ट्रेडिंग स्थितियों के अनुकूल होते हैं। हालांकि, अभी भी रणनीति में अनुकूलन के लिए जगह है, जैसे पैरामीटर अनुकूलन, अन्य तकनीकी संकेतकों की शुरुआत, और लाभ लेने और स्टॉप लॉस सेटिंग्स का अनुकूलन। निरंतर अनुकूलन और सुधार के साथ, रणनीति से वास्तविक ट्रेडिंग में बेहतर परिणाम प्राप्त करने की उम्मीद है।
/*backtest start: 2024-03-21 00:00:00 end: 2024-03-28 00:00:00 period: 1m basePeriod: 1m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // @BryanAaron //@version=5 strategy("Bybit EMA RSI Strategy", overlay=true) // Input parameters fastLength = input(90, title="Fast EMA Length") slowLength = input(300, title="Slow EMA Length") rsiLength = input(5, title="RSI Length") rsiUpperThreshold = input(85, title="RSI Upper Threshold") rsiLowerThreshold = input(45, title="RSI Lower Threshold") takeProfitPerc = input(5, title="Take Profit %") stopLossPerc = input(3, title="Stop Loss %") bybitAccountLevel = input.string("VIP 0", title="Bybit Account Level", options=["VIP 0", "VIP 1", "VIP 2", "VIP 3", "VIP 4"]) // Calculate moving averages fastMA = ta.ema(close, fastLength) slowMA = ta.ema(close, slowLength) // Calculate RSI rsi = ta.rsi(close, rsiLength) // Trading conditions longCondition = (fastMA > slowMA) and (rsi < rsiLowerThreshold) shortCondition = (fastMA < slowMA) and (rsi > rsiUpperThreshold) // Set commission based on Bybit account level commissionPerc = switch bybitAccountLevel "VIP 0" => 0.075 "VIP 1" => 0.065 "VIP 2" => 0.055 "VIP 3" => 0.045 "VIP 4" => 0.035 => 0.075 // Calculate entry prices with commission var float longEntryPrice = na var float shortEntryPrice = na longEntryPriceWithCommission = close * (1 + commissionPerc / 100) shortEntryPriceWithCommission = close * (1 - commissionPerc / 100) // Calculate take profit and stop loss prices takeProfitPrice(entryPrice) => entryPrice * (1 + takeProfitPerc / 100) stopLossPrice(entryPrice) => entryPrice * (1 - stopLossPerc / 100) // Plot entry prices plotchar(longCondition, title="Long Entry Price", char="LE", location=location.belowbar, color=color.green) plotchar(shortCondition, title="Short Entry Price", char="SE", location=location.abovebar, color=color.red) // Draw position on the chart longColor = color.green shortColor = color.red profitColor = color.new(color.green, 80) lossColor = color.new(color.red, 80) plotshape(longCondition and strategy.position_size > 0, title="Long Position", text="Long", location=location.belowbar, style=shape.labelup, size=size.small, color=longColor, textcolor=color.white) plotshape(shortCondition and strategy.position_size < 0, title="Short Position", text="Short", location=location.abovebar, style=shape.labeldown, size=size.small, color=shortColor, textcolor=color.white) if (strategy.position_size > 0) line.new(bar_index, longEntryPrice, bar_index + 1, longEntryPrice, color=longColor, width=2) longProfitLine = line.new(bar_index, takeProfitPrice(longEntryPrice), bar_index + 1, takeProfitPrice(longEntryPrice), color=profitColor, width=1) longLossLine = line.new(bar_index, stopLossPrice(longEntryPrice), bar_index + 1, stopLossPrice(longEntryPrice), color=lossColor, width=1) else if (strategy.position_size < 0) line.new(bar_index, shortEntryPrice, bar_index + 1, shortEntryPrice, color=shortColor, width=2) shortProfitLine = line.new(bar_index, stopLossPrice(shortEntryPrice), bar_index + 1, stopLossPrice(shortEntryPrice), color=profitColor, width=1) shortLossLine = line.new(bar_index, takeProfitPrice(shortEntryPrice), bar_index + 1, takeProfitPrice(shortEntryPrice), color=lossColor, width=1) // Entry if (longCondition) strategy.entry("Long", strategy.long) longEntryPrice := longEntryPriceWithCommission else if (shortCondition) strategy.entry("Short", strategy.short) shortEntryPrice := shortEntryPriceWithCommission