এই কৌশলটি RSI সূচকটি বোলিংজার ব্যান্ডের সাথে বিক্রি করতে ব্যবহার করে যখন দামটি উপরের বোলিংজার ব্যান্ডের উপরে থাকে (এবং এই মানটি নীচের ব্যান্ডের নীচে থাকে তখন কিনতে) । এই সহজ কৌশলটি কেবল তখনই সক্রিয় হয় যখন RSI এবং বোলিংজার ব্যান্ড সূচক উভয়ই একই সময়ে একটি ওভারক্রয় বা ওভারসোল্ড অবস্থায় থাকে।
আপডেটএই আপডেট সংস্করণ 1.1 এ কৌশলটি ব্যবহারকারীর জন্য উভয়ই সহজ করা হয়েছিল (কম ইনপুট) এবং এখন এসএমএর জন্য 200 সময়ের ব্যবহার করে ব্যাকটেস্টিংয়ে আরও সফল করা হয়েছিল যা বোলিঞ্জার ব্যান্ডের ভিত্তি। আমি কম, তবে আরও প্রাসঙ্গিক ট্রেডিং সুযোগগুলি দেখানোর জন্য রঙের সতর্কতার সংখ্যাও হ্রাস করেছি।
এবং প্রথম সংস্করণের মতো এই কৌশলটি উচ্চতর সময় ফ্রেম থেকে বন্ধ মূল্য ব্যবহার করে না এবং বর্তমান মোমবাতি বন্ধ হওয়ার পরে এটি পুনরায় আঁকা উচিত নয়। বর্তমান মোমবাতি বন্ধ না হওয়া পর্যন্ত এটি প্রতিটি ট্রেডিংভিউ সূচকের মতো পুনরায় আঁকতে পারে।
সমস্ত ট্রেডিংয়ে উচ্চ ঝুঁকি জড়িত; অতীতের কর্মক্ষমতা ভবিষ্যতের ফলাফলের নির্দেশক নয়। অনুমান বা সিমুলেটেড কর্মক্ষমতা ফলাফলের কিছু অন্তর্নিহিত সীমাবদ্ধতা রয়েছে। প্রকৃত কর্মক্ষমতা রেকর্ডের বিপরীতে, সিমুলেটেড ফলাফলগুলি প্রকৃত ট্রেডিংয়ের প্রতিনিধিত্ব করে না। এছাড়াও, যেহেতু ট্রেডগুলি প্রকৃতপক্ষে কার্যকর করা হয়নি, ফলাফলগুলি নির্দিষ্ট বাজার কারণগুলির প্রভাবের জন্য কম-বা অতিরিক্ত ক্ষতিপূরণ দিতে পারে, যদি থাকে তবে, যেমন তরলতার অভাব। সাধারণভাবে সিমুলেটেড ট্রেডিং প্রোগ্রামগুলিও এই সত্যের সাপেক্ষে যে তারা পিছনের দৃষ্টিভঙ্গির সুবিধার সাথে ডিজাইন করা হয়েছে। কোনও প্রতিনিধিত্ব করা হচ্ছে না যে কোনও অ্যাকাউন্ট প্রদর্শিতগুলির মতো লাভ বা ক্ষতি অর্জন করবে বা সম্ভবত অর্জন করবে।
দ্রষ্টব্যঃ উন্নত ব্যবহারকারীদের জন্য যদি আপনি এই কৌশল স্ক্রিপ্টের আরো ফাংশন অ্যাক্সেস করতে চান, তাহলে অনুগ্রহ করে সংস্করণ 1.0 ব্যবহার করুনঃপুনরায় পরীক্ষা
/*backtest start: 2022-04-06 00:00:00 end: 2022-05-05 23:59:00 period: 15m basePeriod: 5m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 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(6,title="RSI Period Length") RSIoverSold = 50 RSIoverBought = 50 price = close vrsi = rsi(price, RSIlength) ///////////// Bollinger Bands BBlength = input(200, minval=1,title="Bollinger Period Length") BBmult = 2 // 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=aqua,title="Bollinger Bands SMA Basis Line") p1 = plot(BBupper, color=silver,title="Bollinger Bands Upper Line") p2 = plot(BBlower, color=silver,title="Bollinger Bands Lower Line") //fill(p1, p2) ///////////// Colors switch1=input(true, title="Enable Bar Color?") switch2=input(true, title="Enable Background Color?") TrendColor = RSIoverBought and (price[1] > BBupper and price < BBupper) and BBbasis < BBbasis[1] ? red : RSIoverSold and (price[1] < BBlower and price > BBlower) and BBbasis > BBbasis[1] ? green : na ///barcolor(switch1?TrendColor:na) //bgcolor(switch2?TrendColor:na,transp=50) ///////////// RSI + Bollinger Bands Strategy if (not na(vrsi)) if (crossover(vrsi, RSIoverSold) and crossover(source, BBlower)) strategy.entry("RSI_BB_L", strategy.long, stop=BBlower, comment="RSI_BB_L") if (crossunder(vrsi, RSIoverBought) and crossunder(source, BBupper)) strategy.entry("RSI_BB_S", strategy.short, stop=BBupper, comment="RSI_BB_S") //plot(strategy.equity, title="equity", color=red, linewidth=2, style=areabr)