এই ট্রেডিং কৌশলটি তিনটি সূচকের উপর ভিত্তি করে তৈরি করা হয়ঃ 100-পরিয়ড এক্সপোনেনশিয়াল মুভিং এভারেজ (ইএমএ 100), নেট অরেলেটেড প্রফিট/লস (এনইউপিএল), এবং আপেক্ষিক অরেলেটেড প্রফিট। এটি ইএমএ 100 এর সাথে মূল্যের ক্রসওভার এবং এনইউপিএল এবং আপেক্ষিক অরেলেটেড প্রফিটের ইতিবাচকতা বা নেতিবাচকতা নির্ধারণ করে ট্রেডিং সংকেত তৈরি করে। যখন দাম ইএমএ 100 এর উপরে অতিক্রম করে এবং এনইউপিএল এবং আপেক্ষিক অরেলেটেড প্রফিট উভয়ই ইতিবাচক হয় তখন একটি দীর্ঘ সংকেত ট্রিগার হয়। যখন দাম ইএমএ 100 এর নীচে অতিক্রম করে এবং এনইউপিএল এবং আপেক্ষিক অরেলেটেড প্রফিট উভয়ই নেতিবাচক হয় তখন একটি সংক্ষিপ্ত সংকেত ট্রিগার হয়। কৌশলটি 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")