এই কৌশলটি ধারাবাহিক মোমবাতিগুলির প্রবণতার উপর ভিত্তি করে। এটি পূর্ববর্তী তিনটি মোমবাতির বন্ধের দামের সাথে বর্তমান বন্ধের দামের তুলনা করে কোনও পজিশনে প্রবেশ করতে হবে কিনা তা নির্ধারণ করে। যখন পরপর তিনটি মোমবাতি বাড়ছে, এটি একটি দীর্ঘ অবস্থানে প্রবেশ করে, অন্যথায় এটি অবস্থানটি বন্ধ করে দেয়। একই সাথে, এই কৌশলটি একটি গতিশীল স্টপ লস পদ্ধতি গ্রহণ করে, যেখানে স্টপ লস স্তরটি প্রবেশের দাম এবং একটি সেট স্টপ লস শতাংশের ভিত্তিতে নির্ধারিত হয়। এই পদ্ধতিটি স্টপ লস স্তরের গতিশীল সামঞ্জস্যের অনুমতি দেয়, ঝুঁকিকে আরও ভালভাবে নিয়ন্ত্রণ করে।
এই কৌশলটি ঝুঁকি নিয়ন্ত্রণের জন্য একটি গতিশীল স্টপ লস পদ্ধতি গ্রহণ করার সময় ধারাবাহিক মোমবাতিগুলির প্রবণতা বিচারের উপর ভিত্তি করে পজিশন খোলার এবং বন্ধ করার সিদ্ধান্ত নেয়। কৌশল যুক্তি পরিষ্কার, বুঝতে এবং বাস্তবায়ন করা সহজ, এবং বিভিন্ন বাজার এবং যন্ত্রের জন্য প্রযোজ্য। তবে, ব্যবহারিক প্রয়োগে, নন-ট্রেন্ডিং বাজারগুলির ঝুঁকিতে মনোযোগ দেওয়ার প্রয়োজন এবং স্টপ লস শতাংশের মতো পরামিতিগুলি অপ্টিমাইজ করা দরকার। উপরন্তু, আরও প্রযুক্তিগত সূচক, অবস্থান পরিচালনা এবং অন্যান্য পদ্ধতি প্রবর্তন কৌশল কর্মক্ষমতা আরও উন্নত করতে পারে।
/*backtest start: 2023-05-28 00:00:00 end: 2024-06-02 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("4 Candle Entry and Exit Strategy", overlay=true) // Define the stop loss percentage stopLossPercent = input.float(11, title="Stop Loss Percentage", minval=0.1) / 100 // Identify if the previous 3 candles are consecutively higher longCondition = close[3] > close[4] and close[2] > close[3] and close[1] > close[2] // Identify if the previous 3 candles are consecutively lower exitCondition = close[3] < close[4] and close[2] < close[3] and close[1] < close[2] // Initialize the entry price and stop loss variables var float entryPrice = na var float stopLoss = na // Update the entry price and stop loss if the long condition is met if (longCondition) entryPrice := close[1] stopLoss := entryPrice * (1 - stopLossPercent) // Enter the long position at the open of the 4th candle if (longCondition) strategy.entry("Long", strategy.long, qty=1) // Exit the position if exit condition is met or stop loss is hit if (exitCondition or (strategy.position_size > 0 and low <= stopLoss)) strategy.close("Long") // Optional: Plot the entry and exit signals on the chart plotshape(series=longCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY") plotshape(series=exitCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")