এই কৌশলটি একাধিক সময়ের চলমান গড়ের উপর ভিত্তি করে একটি প্রবণতা অনুসরণকারী ট্রেডিং সিস্টেম। এটি নির্দিষ্ট ট্রেডিং সংকেত সনাক্ত করতে 5 সময়ের এক্সপোনেনশিয়াল মুভিং এভারেজ (ইএমএ) উচ্চ এবং নিম্নকে অন্তর্ভুক্ত করার সময় সামগ্রিক বাজারের প্রবণতা দিক নির্ধারণের জন্য 89-পরিসরের এবং 21-পরিসরের সহজ চলমান গড় (এসএমএ) ব্যবহার করে। কৌশলটি স্থির স্টপ-লস এবং ট্রেইলিং টেক-লাভ প্রক্রিয়াগুলির সাথে একত্রিত দ্বৈত অবস্থান পরিচালনার পদ্ধতি ব্যবহার করে।
মূল যুক্তিতে নিম্নলিখিত মূল উপাদানগুলি অন্তর্ভুক্ত রয়েছেঃ
এই কৌশলটি একটি বিস্তৃত প্রবণতা অনুসরণকারী সিস্টেমকে উপস্থাপন করে যা নমনীয় অবস্থান পরিচালনা এবং ঝুঁকি নিয়ন্ত্রণ পদ্ধতি বাস্তবায়নের সময় একাধিক সময়ের চলমান গড়ের মাধ্যমে বাজারের প্রবণতা ক্যাপচার করে। যদিও অপ্টিমাইজেশনের জন্য জায়গা রয়েছে, তবে প্রাথমিক কাঠামোটি ভাল ব্যবহারিকতা এবং স্কেলযোগ্যতা প্রদর্শন করে। পরামিতিগুলি সামঞ্জস্য করে এবং বিভিন্ন ট্রেডিং যন্ত্র এবং বাজারের পরিবেশের জন্য ফিল্টারিং শর্ত যুক্ত করে কৌশলটির স্থায়িত্ব বাড়ানো যেতে পারে।
/*backtest start: 2024-11-12 00:00:00 end: 2024-12-11 08:00:00 period: 2h basePeriod: 2h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © tobiashartemink2 //@version=5 strategy("High 5 Trading Technique", overlay=true) // --- Input parameters --- sma89Length = input.int(title="SMA 89 Length", defval=89) sma21Length = input.int(title="SMA 21 Length", defval=21) ema5HighLength = input.int(title="EMA 5 High Length", defval=5) ema5LowLength = input.int(title="EMA 5 Low Length", defval=5) contracts = input.int(title="Aantal Contracten", defval=1) stopLossPoints = input.int(title="Stop Loss Points per Contract", defval=25) takeProfitPoints = input.int(title="Take Profit Points per Contract", defval=25) // --- Calculate moving averages --- sma89 = ta.sma(close, sma89Length) sma21 = ta.sma(close, sma21Length) ema5High = ta.ema(high, ema5HighLength) ema5Low = ta.ema(low, ema5LowLength) // --- Identify trend and order of moving averages --- longSetup = close > sma89 and close > sma21 and ema5High > sma21 and sma21 > sma89 shortSetup = close < sma89 and close < sma21 and ema5Low < sma21 and sma21 < sma89 // --- Entry signals --- longTrigger = longSetup and close <= ema5Low shortTrigger = shortSetup and close >= ema5High // --- Entry orders --- if (longTrigger) strategy.entry("Long 1", strategy.long, qty=contracts) strategy.entry("Long 2", strategy.long, qty=contracts) if (shortTrigger) strategy.entry("Short 1", strategy.short, qty=contracts) strategy.entry("Short 2", strategy.short, qty=contracts) // --- Stop-loss and take-profit for long positions --- if (strategy.position_size > 0) strategy.exit("Exit Long 1", "Long 1", stop=strategy.position_avg_price - stopLossPoints, limit=strategy.position_avg_price + takeProfitPoints) strategy.exit("Exit Long 2", "Long 2", stop=strategy.position_avg_price - stopLossPoints, trail_offset=takeProfitPoints, trail_points=takeProfitPoints) // --- Stop-loss and take-profit for short positions --- if (strategy.position_size < 0) strategy.exit("Exit Short 1", "Short 1", stop=strategy.position_avg_price + stopLossPoints, limit=strategy.position_avg_price - takeProfitPoints) strategy.exit("Exit Short 2", "Short 2", stop=strategy.position_avg_price + stopLossPoints, trail_offset=takeProfitPoints, trail_points=takeProfitPoints) // --- Plot moving averages --- plot(sma89, color=color.blue, linewidth=2) plot(sma21, color=color.red, linewidth=2) plot(ema5High, color=color.green, linewidth=2) plot(ema5Low, color=color.orange, linewidth=2)