इस रणनीति का नाम RSI Bollinger Bands TP/SL Strategy है। यह रुझानों और ट्रेडिंग संकेतों की पहचान करने के लिए RSI सूचक और Bollinger Bands को जोड़ती है। जब RSI सूचक ओवरबॉट या ओवरसोल्ड सिग्नल दिखाता है और कीमत Bollinger Bands को छूती या तोड़ती है, तो लंबी या छोटी स्थिति खोली जाएगी। इसके अलावा, जोखिमों को नियंत्रित करने के लिए लाभ और स्टॉप लॉस बिंदु भी सेट किए जाते हैं।
आरएसआई संकेतक यह आंकता है कि क्या एक स्टॉक ओवरबॉट या ओवरसोल्ड है। ओवरबोल्ड लाइन से ऊपर एक आरएसआई रीडिंग ओवरबोल्ड स्थितियों को इंगित करती है, जबकि ओवरसोल्ड लाइन से नीचे एक रीडिंग ओवरसोल्ड स्थितियों को इंगित करती है। इस रणनीति में ओवरबोल्ड लाइन 50 पर सेट की जाती है और ओवरसोल्ड लाइन 50 पर सेट की जाती है।
बोलिंगर बैंड्स एक साधारण चलती औसत के ऊपर और नीचे मानक विचलन रेखाओं को प्लॉट करते हैं। ऊपरी बैंड प्रतिरोध के रूप में कार्य करता है और निचला बैंड समर्थन के रूप में कार्य करता है। निचले बैंड का ऊपर का क्रॉसिंग एक खरीद संकेत है, जबकि ऊपरी बैंड का नीचे का क्रॉसिंग एक बिक्री संकेत है।
जब आरएसआई संकेतक एक निचला उलट सिग्नल दिखाता है और कीमत बोलिंगर बैंड के निचले बैंड के माध्यम से टूट जाती है, तो इसे ऊपर की ओर उलट माना जाता है, इस प्रकार लंबा होता है। जब आरएसआई संकेतक एक ऊपरी उलट सिग्नल दिखाता है और कीमत ऊपरी बैंड को तोड़ती है, तो इसे नीचे की ओर उलट माना जाता है, इस प्रकार छोटा होता है।
आरएसआई और बोलिंगर बैंड दोनों का उपयोग रुझानों और उलटफेरों को निर्धारित करने के लिए किया जाता है। यह संयोजन संकेत पहचान सटीकता में सुधार करता है और झूठे ब्रेकआउट से बचाता है।
लाभ को लॉक करने और हानि को अधिकतम करने के लिए रणनीति सेट लाभ (टीपी) और स्टॉप लॉस (एसएल) अंक लेते हैं।
उपयोगकर्ता बाजार की स्थितियों के आधार पर केवल लंबी, केवल छोटी या दोनों दिशाओं में जा सकते हैं, जिससे जोखिम नियंत्रण लचीला हो सकता है।
मानक विचलन का आकार बैंड की चौड़ाई और व्यापार संकेतों को प्रभावित करता है। अनुचित सेटिंग्स अत्यधिक झूठे संकेत उत्पन्न कर सकती हैं।
वी-आकार के रिवर्स अनावश्यक नुकसान को ट्रिगर कर सकते हैं टीपी/एसएल सेटिंग्स बहुत आक्रामक होने के साथ।
गलत आरएसआई पैरामीटर सेटिंग्स से रिवर्स सिग्नल की सटीकता कम हो जाती है।
अधिकतम पैरामीटर संयोजन खोजने के लिए अधिक आरएसआई लंबाई मानों का परीक्षण किया जा सकता है।
इष्टतम पैरामीटर संयोजन खोजने के लिए अधिक लंबाई और मानक विचलन का परीक्षण किया जा सकता है।
बैकटेस्टिंग से इष्टतम टीपी/एसएल अनुपात खोजने में मदद मिल सकती है।
यह रणनीति रुझानों और उलटफेरों की पहचान करने के लिए आरएसआई और बोलिंगर बैंड का लाभ उठाती है, और जोखिमों को नियंत्रित करने के लिए टीपी / एसएल सेट करती है। यह स्वचालित रूप से ट्रेडिंग संकेतों का पता लगा सकता है और निकास का प्रबंधन कर सकता है। अभी भी कुछ जोखिम हैं जिन्हें पैरामीटर अनुकूलन द्वारा बेहतर बनाया जा सकता है। सामान्य तौर पर, यह एक व्यावहारिक रणनीति है जिसमें मजबूत प्रयोज्यता है।
/*backtest start: 2023-11-20 00:00:00 end: 2023-12-20 00:00:00 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/ // © BigCoinHunter //@version=5 strategy(title="RSI_Boll-TP/SL", overlay=true, pyramiding=0, default_qty_type=strategy.percent_of_equity, default_qty_value=100, initial_capital=1000, currency=currency.USD, commission_value=0.05, commission_type=strategy.commission.percent, process_orders_on_close=true) //----------- get the user inputs -------------- //---------- RSI ------------- price = input(close, title="Source") RSIlength = input.int(defval=6,title="RSI Length") RSIoverSold = input.int(defval=50, title="RSI OverSold", minval=1) RSIoverBought = input.int(defval=50, title="RSI OverBought", minval=1) //------- Bollinger Bands ----------- BBlength = input.int(defval=200, title="Bollinger Period Length", minval=1) BBmult = input.float(defval=2.0, minval=0.001, maxval=50, step=0.1, title="Bollinger Bands Standard Deviation") BBbasis = ta.sma(price, BBlength) BBdev = BBmult * ta.stdev(price, BBlength) BBupper = BBbasis + BBdev BBlower = BBbasis - BBdev source = close buyEntry = ta.crossover(source, BBlower) sellEntry = ta.crossunder(source, BBupper) plot(BBbasis, color=color.aqua, title="Bollinger Bands SMA Basis Line") p1 = plot(BBupper, color=color.silver, title="Bollinger Bands Upper Line") p2 = plot(BBlower, color=color.silver, title="Bollinger Bands Lower Line") fill(plot1=p1, plot2=p2, title="Bollinger BackGround", color=color.new(color.aqua,90), fillgaps=false, editable=true) //---------- input TP/SL --------------- tp = input.float(title="Take Profit:", defval=0.0, minval=0.0, maxval=100.0, step=0.1) * 0.01 sl = input.float(title="Stop Loss: ", defval=0.0, minval=0.0, maxval=100.0, step=0.1) * 0.01 longEntry = input.bool(defval=true, title= 'Long Entry', inline="11") shortEntry = input.bool(defval=true, title='Short Entry', inline="11") //---------- backtest range setup ------------ fromDay = input.int(defval = 1, title = "From Day", minval = 1, maxval = 31) fromMonth = input.int(defval = 1, title = "From Month", minval = 1, maxval = 12) fromYear = input.int(defval = 2021, title = "From Year", minval = 2010) toDay = input.int(defval = 30, title = "To Day", minval = 1, maxval = 31) toMonth = input.int(defval = 12, title = "To Month", minval = 1, maxval = 12) toYear = input.int(defval = 2042, title = "To Year", minval = 2010) //------------ time interval setup ----------- start = timestamp(fromYear, fromMonth, fromDay, 00, 00) // backtest start window finish = timestamp(toYear, toMonth, toDay, 23, 59) // backtest finish window window() => time >= start and time <= finish ? true : false // create function "within window of time" //------- define the global variables ------ var bool long = true var bool stoppedOutLong = false var bool stoppedOutShort = false //--------- Colors --------------- TrendColor = RSIoverBought and (price[1] > BBupper and price < BBupper) and BBbasis < BBbasis[1] ? color.red : RSIoverSold and (price[1] < BBlower and price > BBlower) and BBbasis > BBbasis[1] ? color.green : na //bgcolor(switch2?(color.new(TrendColor,50)):na) //--------- calculate the input/output points ----------- longProfitPrice = strategy.position_avg_price * (1 + tp) // tp -> take profit percentage longStopPrice = strategy.position_avg_price * (1 - sl) // sl -> stop loss percentage shortProfitPrice = strategy.position_avg_price * (1 - tp) shortStopPrice = strategy.position_avg_price * (1 + sl) //---------- RSI + Bollinger Bands Strategy ------------- vrsi = ta.rsi(price, RSIlength) rsiCrossOver = ta.crossover(vrsi, RSIoverSold) rsiCrossUnder = ta.crossunder(vrsi, RSIoverBought) BBCrossOver = ta.crossover(source, BBlower) BBCrossUnder = ta.crossunder(source, BBupper) if (not na(vrsi)) if rsiCrossOver and BBCrossOver long := true if rsiCrossUnder and BBCrossUnder long := false //------------------- determine buy and sell points --------------------- buySignall = window() and long and (not stoppedOutLong) sellSignall = window() and (not long) and (not stoppedOutShort) //---------- execute the strategy ----------------- if(longEntry and shortEntry) if long strategy.entry("LONG", strategy.long, when = buySignall, comment = "ENTER LONG") stoppedOutLong := true stoppedOutShort := false else strategy.entry("SHORT", strategy.short, when = sellSignall, comment = "ENTER SHORT") stoppedOutLong := false stoppedOutShort := true else if(longEntry) strategy.entry("LONG", strategy.long, when = buySignall) strategy.close("LONG", when = sellSignall) if long stoppedOutLong := true else stoppedOutLong := false else if(shortEntry) strategy.entry("SHORT", strategy.short, when = sellSignall) strategy.close("SHORT", when = buySignall) if not long stoppedOutShort := true else stoppedOutShort := false //----------------- take profit and stop loss ----------------- if(tp>0.0 and sl>0.0) if ( strategy.position_size > 0 ) strategy.exit(id="LONG", limit=longProfitPrice, stop=longStopPrice, comment="Long TP/SL Trigger") else if ( strategy.position_size < 0 ) strategy.exit(id="SHORT", limit=shortProfitPrice, stop=shortStopPrice, comment="Short TP/SL Trigger") else if(tp>0.0) if ( strategy.position_size > 0 ) strategy.exit(id="LONG", limit=longProfitPrice, comment="Long TP Trigger") else if ( strategy.position_size < 0 ) strategy.exit(id="SHORT", limit=shortProfitPrice, comment="Short TP Trigger") else if(sl>0.0) if ( strategy.position_size > 0 ) strategy.exit(id="LONG", stop=longStopPrice, comment="Long SL Trigger") else if ( strategy.position_size < 0 ) strategy.exit(id="SHORT", stop=shortStopPrice, comment="Short SL Trigger")