এটি একটি প্রবণতা অনুসরণকারী কৌশল যা মাল্টি-টাইমফ্রেম বিশ্লেষণ এবং অস্থিরতা পরিচালনাকে একত্রিত করে। কৌশল কোর প্রবণতা দিকের জন্য দ্বৈত ইএমএ ক্রসওভার ব্যবহার করে, অতিরিক্ত ক্রয় / অতিরিক্ত বিক্রয় ফিল্টারিংয়ের জন্য আরএসআই সূচক, সামগ্রিক প্রবণতা নিশ্চিতকরণের জন্য উচ্চতর সময়সীমা ইএমএ অন্তর্ভুক্ত করে এবং গতিশীল স্টপ-লস এবং মুনাফা লক্ষ্য ব্যবস্থাপনার জন্য এটিআর সূচক ব্যবহার করে। একাধিক প্রযুক্তিগত সূচকগুলির সমন্বিত ব্যবহারের মাধ্যমে, কৌশলটি সংকেত নির্ভরযোগ্যতা এবং কার্যকর ঝুঁকি নিয়ন্ত্রণ উভয়ই নিশ্চিত করে।
মূল ট্রেডিং লজিক নিম্নলিখিত মূল উপাদানগুলি নিয়ে গঠিতঃ
এটি একটি সু-ডিজাইন করা প্রবণতা অনুসরণকারী কৌশল যা মাল্টি-টাইমফ্রেম বিশ্লেষণ এবং অস্থিরতা পরিচালনার মাধ্যমে অনুকূল ঝুঁকি-পুরষ্কার বৈশিষ্ট্য অর্জন করে। মূল সুবিধাটি একাধিক প্রযুক্তিগত সূচকগুলির জৈবিক সংমিশ্রণে রয়েছে, যা বাণিজ্য নির্ভরযোগ্যতা এবং কার্যকর ঝুঁকি নিয়ন্ত্রণ উভয়ই নিশ্চিত করে। যদিও কিছু সম্ভাব্য ঝুঁকি বিদ্যমান, কৌশলটির সামগ্রিক পারফরম্যান্সের এখনও ক্রমাগত অপ্টিমাইজেশন এবং পরিমার্জনের মাধ্যমে উন্নতির সুযোগ রয়েছে। লাইভ ট্রেডিংয়ে ঝুঁকি নিয়ন্ত্রণের ব্যবস্থা কঠোরভাবে বাস্তবায়নের সময় প্যারামিটার অপ্টিমাইজেশন এবং ব্যাকটেস্টিং বৈধকরণে মনোনিবেশ করা গুরুত্বপূর্ণ।
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-26 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Trend Following with ATR and MTF Confirmation", overlay=true) // Parameters emaShortPeriod = input.int(9, title="Short EMA Period", minval=1) emaLongPeriod = input.int(21, title="Long EMA Period", minval=1) rsiPeriod = input.int(14, title="RSI Period", minval=1) rsiOverbought = input.int(70, title="RSI Overbought", minval=50) rsiOversold = input.int(30, title="RSI Oversold", minval=1) atrPeriod = input.int(14, title="ATR Period", minval=1) atrMultiplier = input.float(1.5, title="ATR Multiplier", minval=0.1) takeProfitATRMultiplier = input.float(2.0, title="Take Profit ATR Multiplier", minval=0.1) // Multi-timeframe settings htfEMAEnabled = input.bool(true, title="Use Higher Timeframe EMA Confirmation?", inline="htf") htfEMATimeframe = input.timeframe("D", title="Higher Timeframe", inline="htf") // Select trade direction tradeDirection = input.string("Both", title="Trade Direction", options=["Both", "Long", "Short"]) // Calculating indicators emaShort = ta.ema(close, emaShortPeriod) emaLong = ta.ema(close, emaLongPeriod) rsiValue = ta.rsi(close, rsiPeriod) atrValue = ta.atr(atrPeriod) // Higher timeframe EMA confirmation htfEMALong = request.security(syminfo.tickerid, htfEMATimeframe, ta.ema(close, emaLongPeriod)) // Trading conditions longCondition = ta.crossover(emaShort, emaLong) and rsiValue < rsiOverbought and (not htfEMAEnabled or close > htfEMALong) shortCondition = ta.crossunder(emaShort, emaLong) and rsiValue > rsiOversold and (not htfEMAEnabled or close < htfEMALong) // Plotting EMAs plot(emaShort, title="EMA Short", color=color.green) plot(emaLong, title="EMA Long", color=color.red) // Trailing Stop-Loss and Take-Profit levels var float trailStopLoss = na var float trailTakeProfit = na // Exit conditions var bool exitLongCondition = na var bool exitShortCondition = na if (strategy.position_size != 0) if (strategy.position_size > 0) // Long Position trailStopLoss := na(trailStopLoss) ? close - atrValue * atrMultiplier : math.max(trailStopLoss, close - atrValue * atrMultiplier) trailTakeProfit := close + atrValue * takeProfitATRMultiplier exitLongCondition := close <= trailStopLoss or close >= trailTakeProfit strategy.exit("Exit Long", "Long", stop=trailStopLoss, limit=trailTakeProfit, when=exitLongCondition) else // Short Position trailStopLoss := na(trailStopLoss) ? close + atrValue * atrMultiplier : math.min(trailStopLoss, close + atrValue * atrMultiplier) trailTakeProfit := close - atrValue * takeProfitATRMultiplier exitShortCondition := close >= trailStopLoss or close <= trailTakeProfit strategy.exit("Exit Short", "Short", stop=trailStopLoss, limit=trailTakeProfit, when=exitShortCondition) // Strategy Entry if (longCondition and (tradeDirection == "Both" or tradeDirection == "Long")) strategy.entry("Long", strategy.long) if (shortCondition and (tradeDirection == "Both" or tradeDirection == "Short")) strategy.entry("Short", strategy.short) // Plotting Buy/Sell signals plotshape(series=longCondition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(series=shortCondition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // Plotting Trailing Stop-Loss and Take-Profit levels plot(strategy.position_size > 0 ? trailStopLoss : na, title="Long Trailing Stop Loss", color=color.red, linewidth=2, style=plot.style_line) plot(strategy.position_size < 0 ? trailStopLoss : na, title="Short Trailing Stop Loss", color=color.green, linewidth=2, style=plot.style_line) plot(strategy.position_size > 0 ? trailTakeProfit : na, title="Long Take Profit", color=color.blue, linewidth=2, style=plot.style_line) plot(strategy.position_size < 0 ? trailTakeProfit : na, title="Short Take Profit", color=color.orange, linewidth=2, style=plot.style_line) // Alerts alertcondition(longCondition, title="Buy Alert", message="Buy Signal Triggered") alertcondition(shortCondition, title="Sell Alert", message="Sell Signal Triggered") alertcondition(exitLongCondition, title="Long Exit Alert", message="Long Position Closed") alertcondition(exitShortCondition, title="Short Exit Alert", message="Short Position Closed")