দ্বিগুণ সূচক অগ্রগতি কৌশলটি ট্রেডিংয়ের জন্য কম ক্রয় এবং উচ্চ বিক্রয় অর্জনের জন্য আরএসআই সূচক এবং ক্লোজিং মূল্য সূচককে একত্রিত করে। এই কৌশলটি কম পিলব্যাক ঝুঁকির সাথে সহজ এবং ব্যবহারিক এবং মাঝারি এবং দীর্ঘমেয়াদী হোল্ডের জন্য উপযুক্ত।
মূলত এই কৌশলটি মূল্যায়নের জন্য নিম্নলিখিত দুটি সূচকের উপর ভিত্তি করেঃ
দ্বৈত সূচক বিশ্লেষণ কৌশল নিম্নলিখিত সুবিধাগুলি আছেঃ
এই কৌশলের কিছু ঝুঁকিও রয়েছে:
এই ঝুঁকিগুলি RSI পরামিতিগুলির অপ্টিমাইজেশান, বাজার অবস্থার মূল্যায়ন এবং বিচার করার জন্য অন্যান্য সূচকগুলির ব্যবহারের মাধ্যমে এড়ানো যেতে পারে।
এই কৌশলটির মূল অপ্টিমাইজেশান দিকগুলি নিম্নলিখিত দিকগুলিতে মনোনিবেশ করেঃ
/*backtest start: 2023-12-01 00:00:00 end: 2023-12-31 23:59:59 period: 1h basePeriod: 15m 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/ // © hobbiecode // If RSI(2) is less than 15, then enter at the close. // Exit on close if today’s close is higher than yesterday’s high. //@version=5 strategy("Hobbiecode - RSI + Close previous day", overlay=true) // RSI parameters rsi_period = 2 rsi_lower = 15 // Calculate RSI rsi_val = ta.rsi(close, rsi_period) // Check if RSI is lower than the defined threshold if (rsi_val < rsi_lower) strategy.entry("Buy", strategy.long) // Check if today's close is higher than yesterday's high if (strategy.position_size > 0 and close > ta.highest(high[1], 1)) strategy.close("Buy") // Plot RSI on chart plot(rsi_val, title="RSI", color=color.red) hline(rsi_lower, title="Oversold Level", color=color.blue)