এই কৌশলটি ট্রেডিং সিগন্যাল তৈরি করতে ইএমএ গোল্ডেন ক্রস ব্যবহার করে, অর্থাৎ, যখন দ্রুত ইএমএ লাইন ধীর ইএমএ লাইনের উপরে অতিক্রম করে তখন একটি ক্রয় সংকেত উত্পন্ন হয় এবং যখন দ্রুত ইএমএ লাইন ধীর ইএমএ লাইনের নীচে অতিক্রম করে তখন একটি বিক্রয় সংকেত উত্পন্ন হয়। এটি একটি সাধারণ প্রবণতা অনুসরণকারী কৌশল। একই সাথে, কৌশলটি লাভ নিশ্চিত করার সময় ঝুঁকি নিয়ন্ত্রণের জন্য একটি গতিশীল স্টপ লস সেট করতে এটিআর সূচক ব্যবহার করে।
সমাধান:
কৌশলটি তুলনামূলকভাবে সহজ এবং ব্যবহার করা সহজ। এটি ইএমএ ক্রসওভারের উপর ভিত্তি করে সংকেত উত্পন্ন করে, প্রবণতা অনুসরণ করে এবং ঝুঁকিগুলি কার্যকরভাবে নিয়ন্ত্রণ করতে এটিআর ট্রেলিং স্টপ লস ব্যবহার করে। যদিও কিছু মিথ্যা সংকেত থাকতে পারে তবে এটি মূল প্রবণতা ক্যাপচার করার ক্ষেত্রে শক্তিশালী ক্ষমতা রাখে এবং রিটার্নগুলি তুলনামূলকভাবে স্থিতিশীল। এটি একটি মৌলিক পরিমাণগত ট্রেডিং কৌশল হিসাবে উপযুক্ত। প্যারামিটার অপ্টিমাইজেশন এবং ফাংশন এক্সটেনশনগুলির মাধ্যমে উন্নতির জন্যও দুর্দান্ত সম্ভাবনা রয়েছে।
/*backtest start: 2022-12-04 00:00:00 end: 2023-12-10 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © byee322 /// This strategy uses the EMA to generate buy and sell signals with a 1.5x ATR stop loss //@version=5 strategy("EMA Strategy with ATR Stop Loss", overlay=true) // Define the EMA lengths as input parameters emaLength1 = input(13, "EMA Length 1") emaLength2 = input(48, "EMA Length 2") // Define the moving averages ema1 = ta.ema(close, emaLength1) ema2 = ta.ema(close, emaLength2) // Buy signal: EMA 1 crosses above EMA 2 buy = ta.crossover(ema1, ema2) // Sell signal: EMA 1 crosses below EMA 2 sell = ta.crossunder(ema1, ema2) // Define the state variable state = 0 state := buy ? 1 : sell ? -1 : nz(state[1]) // Change the color of the candles color = state == 1 ? color.green : state == -1 ? color.red : na // Plot the colored candles plotcandle(open, high, low, close, color=color) // Plot the signals on the chart with text labels plotshape(buy, style=shape.triangleup, color=color.new(color.green, 50), location=location.belowbar, text="Buy") plotshape(sell, style=shape.triangledown, color=color.new(color.red, 50), location=location.abovebar, text="Sell") // Calculate the ATR atrVal = ta.atr(14) // Calculate the stop loss level for buy stopLossBuy = buy ? close[1] - 1.5 * atrVal : na // Calculate the stop loss level for sell stopLossSell = sell ? close[1] + 1.5 * atrVal : na // Plot the stop loss level for buy plot(stopLossBuy, color=color.new(color.green, 50), linewidth=3) // Plot the stop loss level for sell plot(stopLossSell, color=color.new(color.red, 50), linewidth=3) if buy strategy.entry("Enter Long", strategy.long) else if sell strategy.entry("Enter Short", strategy.short)