এই কৌশলটি আপেক্ষিক শক্তি সূচক (আরএসআই) এবং বোলিংজার ব্যান্ড প্রযুক্তিগত সূচকগুলিকে একত্রিত করে। এটি যখন দাম নিম্ন বোলিংজার ব্যান্ডের নীচে পড়ে তখন ক্রয় সংকেত উত্পন্ন করে এবং যখন দাম উপরের বোলিংজার ব্যান্ডের উপরে উঠে যায় তখন বিক্রয় সংকেত উত্পন্ন করে। কৌশলটি কেবল তখনই ট্রেডিং সংকেতগুলি ট্রিগার করে যখন আরএসআই এবং বোলিংজার ব্যান্ড সূচক উভয়ই একযোগে একটি ওভারসোল্ড বা ওভারক্রয় অবস্থায় থাকে।
আরএসআই এবং বোলিংজার ব্যান্ডস ডাবল কৌশলটি বাজারের অবস্থার তুলনামূলকভাবে বিস্তৃত মূল্যায়ন এবং সংশ্লিষ্ট ট্রেডিং সংকেত উত্পন্ন করার জন্য প্রবণতা এবং গতির সূচকগুলিকে একত্রিত করে। তবে, কৌশলটি অস্থির বাজারে কম পারফর্ম করতে পারে এবং ঝুঁকি নিয়ন্ত্রণের ব্যবস্থাগুলির অভাব রয়েছে, তাই লাইভ ট্রেডিংয়ে এটি প্রয়োগ করার সময় সতর্কতার প্রয়োজন। প্যারামিটারগুলি অনুকূল করে, অন্যান্য সূচকগুলি প্রবর্তন করে এবং যুক্তিসঙ্গত স্টপ-লস এবং লাভের স্তর নির্ধারণ করে, এই কৌশলটির স্থায়িত্ব এবং লাভজনকতা আরও উন্নত করা যেতে পারে।
/*backtest start: 2024-03-01 00:00:00 end: 2024-03-31 23:59:59 period: 4h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=4 strategy("Bollinger + RSI, Double Strategy (by ChartArt) v1.1", shorttitle="CA_-_RSI_Bol_Strat_1.1", overlay=true) // ChartArt's RSI + Bollinger Bands, Double Strategy - Update // // Version 1.1 // Idea by ChartArt on January 18, 2015. // // This strategy uses the RSI indicator // together with the Bollinger Bands // to sell when the price is above the // upper Bollinger Band (and to buy when // this value is below the lower band). // // This simple strategy only triggers when // both the RSI and the Bollinger Bands // indicators are at the same time in // a overbought or oversold condition. // // In this version 1.1 the strategy was // both simplified for the user and // made more successful in backtesting. // // List of my work: // https://www.tradingview.com/u/ChartArt/ // // __ __ ___ __ ___ // / ` |__| /\ |__) | /\ |__) | // \__, | | /~~\ | \ | /~~\ | \ | // // ///////////// RSI RSIlength = input(14,title="RSI Period Length") RSIoverSold = 30 RSIoverBought = 70 price = close vrsi = rsi(price, RSIlength) ///////////// Bollinger Bands BBlength = input(20, minval=1,title="Bollinger Period Length") BBmult = input(2.0, minval=0.001, maxval=50,title="Bollinger Bands Standard Deviation") BBbasis = sma(price, BBlength) BBdev = BBmult * stdev(price, BBlength) BBupper = BBbasis + BBdev BBlower = BBbasis - BBdev source = close buyEntry = crossover(source, BBlower) sellEntry = crossunder(source, BBupper) plot(BBbasis, color=color.blue,title="Bollinger Bands SMA Basis Line") p1 = plot(BBupper, color=color.red,title="Bollinger Bands Upper Line") p2 = plot(BBlower, color=color.green,title="Bollinger Bands Lower Line") fill(p1, p2) // Entry conditions crossover_rsi = crossover(vrsi, RSIoverSold) and crossover(source, BBlower) crossunder_rsi = crossunder(vrsi, RSIoverBought) and crossunder(source, BBupper) ///////////// RSI + Bollinger Bands Strategy if (not na(vrsi)) if (crossover_rsi) strategy.entry("RSI_BB_L", strategy.long, comment="RSI_BB_L") else strategy.cancel(id="RSI_BB_L") if (crossunder_rsi) strategy.entry("RSI_BB_S", strategy.short, comment="RSI_BB_S") else strategy.cancel(id="RSI_BB_S")