यह ट्रेडिंग रणनीति तीन संकेतकों पर आधारित हैः 100-अवधि घातीय चलती औसत (EMA100), शुद्ध अमूर्त लाभ / हानि (NUPL), और सापेक्ष अमूर्त लाभ। यह EMA100 के साथ मूल्य के क्रॉसओवर और NUPL और सापेक्ष अमूर्त लाभ की सकारात्मकता या नकारात्मकता को निर्धारित करके ट्रेडिंग सिग्नल उत्पन्न करता है। एक लंबा संकेत तब ट्रिगर किया जाता है जब मूल्य EMA100 से ऊपर पार हो जाता है और NUPL और सापेक्ष अमूर्त लाभ दोनों सकारात्मक होते हैं। एक छोटा संकेत तब ट्रिगर किया जाता है जब कीमत EMA100 से नीचे पार हो जाती है और NUPL और सापेक्ष अमूर्त लाभ दोनों नकारात्मक होते हैं। रणनीति 10% का एक निश्चित स्थिति आकार का उपयोग करती है और 10% का स्टॉप लॉस सेट करती है।
यह ट्रेडिंग रणनीति तीन संकेतकों के माध्यम से ट्रेडिंग सिग्नल उत्पन्न करती हैः ईएमए 100, एनयूपीएल, और सापेक्ष अव्यवस्थित लाभ। इसके स्पष्ट तर्क, नियंत्रित जोखिम और मजबूत अनुकूलन क्षमता जैसे फायदे हैं। साथ ही, इसमें झूठे संकेत, लेग और पैरामीटर अनुकूलन जैसे जोखिम भी हैं। भविष्य में, रणनीति को पैरामीटर अनुकूलन, सिग्नल फ़िल्टरिंग, गतिशील स्थिति प्रबंधन और लंबे-लघु संयोजन के माध्यम से अनुकूलित और सुधार किया जा सकता है।
/*backtest start: 2023-06-11 00:00:00 end: 2024-06-16 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Scalping Strategy with EMA 100, NUPL, and Relative Unrealized Profit", overlay=true) // Input for EMA period emaPeriod = input.int(100, title="EMA Period", minval=1) ema100 = ta.ema(close, emaPeriod) plot(ema100, color=color.blue, title="EMA 100") // Placeholder function for NUPL (Net Unrealized Profit/Loss) // Replace this with actual NUPL data or calculation NUPL = close * 0.0001 // Dummy calculation // Placeholder function for relative unrealized profit // Replace this with actual relative unrealized profit data or calculation relativeUnrealizedProfit = close * 0.0001 // Dummy calculation // Define conditions for long and short entries longCondition = ta.crossover(close, ema100) and NUPL > 0 and relativeUnrealizedProfit > 0 shortCondition = ta.crossunder(close, ema100) and NUPL < 0 and relativeUnrealizedProfit < 0 // Plot buy and sell signals on the chart plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal") plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal") // Calculate stop loss levels longStopLoss = close * 0.90 shortStopLoss = close * 1.10 // Strategy entry and exit rules if (longCondition) strategy.entry("Long", strategy.long, stop=longStopLoss) if (shortCondition) strategy.entry("Short", strategy.short, stop=shortStopLoss) // Set stop loss levels for active positions if (strategy.position_size > 0) strategy.exit("Exit Long", "Long", stop=longStopLoss) if (strategy.position_size < 0) strategy.exit("Exit Short", "Short", stop=shortStopLoss) // Alerts for long and short entries alertcondition(longCondition, title="Long Entry Alert", message="Long entry signal based on EMA 100, NUPL, and relative unrealized profit") alertcondition(shortCondition, title="Short Entry Alert", message="Short entry signal based on EMA 100, NUPL, and relative unrealized profit") // Visualize the entry conditions plotshape(series=longCondition, location=location.belowbar, color=color.blue, style=shape.cross, title="Long Condition") plotshape(series=shortCondition, location=location.abovebar, color=color.red, style=shape.cross, title="Short Condition")