यह रणनीति एक उच्च आवृत्ति वाली ट्रेडिंग प्रणाली है जो बोलिंगर बैंड्स संकेतकों को मूल्य ब्रेकआउट संकेतों के साथ जोड़ती है। यह रणनीति बाजार के ओवरबॉट और ओवरसोल्ड स्थितियों के दौरान रिवर्सल ट्रेडों को निष्पादित करने के लिए पिछले उच्च और निम्न बिंदु ब्रेकआउट संकेतों के साथ संयुक्त मूल्य और बोलिंगर बैंड्स के बीच संबंध की निगरानी करती है। यह प्रणाली लाभ और हानि लक्ष्यों के लिए 1: 1 जोखिम-लाभ अनुपात को लागू करती है, और व्यापारियों को बाजार के रुझानों को सहज रूप से समझने में मदद करने के लिए प्रमुख मूल्य स्तरों को दृश्यमान करती है।
रणनीति का मूल तर्क दो मुख्य शर्तों पर आधारित हैः एक खरीद संकेत तब ट्रिगर किया जाता है जब कीमत पिछले उच्च से ऊपर टूट जाती है और वह उच्च निचले बोलिंगर बैंड से नीचे होता है; एक बिक्री संकेत तब ट्रिगर किया जाता है जब कीमत पिछले निम्न से नीचे टूट जाती है और वह निम्न ऊपरी बोलिंगर बैंड से ऊपर होता है। बोलिंगर बैंड पैरामीटर बाजार अस्थिरता रेंज और ओवरबॉट / ओवरसोल्ड क्षेत्रों को निर्धारित करने के लिए 2 मानक विचलन के साथ 20 अवधि के चलती औसत का उपयोग करते हैं। ट्रेडिंग संकेतों को ट्रिगर करने के बाद, सिस्टम स्वचालित रूप से संबंधित स्टॉप-लॉस और लक्ष्य स्तर निर्धारित करता है, उन्हें विभिन्न लाइन शैलियों के माध्यम से विज़ुअलाइज़ करता है।
यह एक व्यापक ट्रेडिंग सिस्टम है जो कई तकनीकी विश्लेषण अवधारणाओं को एकीकृत करता है। बोलिंगर बैंड संकेतक और मूल्य ब्रेकआउट के संयोजन के माध्यम से, रणनीति बाजार के ओवरबॉयड और ओवरसोल्ड क्षेत्रों में उलट अवसरों को पकड़ सकती है। जबकि अनुकूलन के लिए जगह है, सिस्टम के बुनियादी ढांचे में अच्छी विस्तार और व्यावहारिक मूल्य है। उचित जोखिम प्रबंधन और पैरामीटर अनुकूलन के माध्यम से, इस रणनीति में वास्तविक व्यापार में स्थिर रिटर्न प्राप्त करने की क्षमता है।
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-03 00:00:00 period: 2d basePeriod: 2d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Bollinger Band Scalping", overlay=true) // Input for Bollinger Bands length and standard deviation bbLength = input(20, title="Bollinger Bands Length") stdDev = input(2.0, title="Bollinger Bands Std Dev") // Calculate and plot the Bollinger Bands basis = ta.sma(close, bbLength) deviation = stdDev * ta.stdev(close, bbLength) upperBB = basis + deviation lowerBB = basis - deviation // Get previous candle's values prevHigh = high[1] // Previous candle high prevLow = low[1] // Previous candle low // Buy Signal Condition: Current high crossed above previous high and previous high is below the lower Bollinger Band buyCondition = ta.crossover(high, prevHigh) and (prevHigh < lowerBB[1]) // Sell Signal Condition: Current low crossed below previous low and previous low is above the upper Bollinger Band sellCondition = ta.crossunder(low, prevLow) and (prevLow > upperBB[1]) // Entry and exit for Buy signals if (buyCondition) strategy.entry("Buy", strategy.long) // Calculate target and stop loss stopLossPrice = prevLow targetPrice = prevHigh + (prevHigh - stopLossPrice) // 1:1 RR target // Set stop loss and target orders strategy.exit("Sell", "Buy", limit=targetPrice, stop=stopLossPrice) // // Plot entry line // line.new(x1=bar_index, y1=prevHigh, x2=bar_index + 12, y2=prevHigh, color=color.green, width=2, style=line.style_solid) // // Plot stop loss line // line.new(x1=bar_index, y1=stopLossPrice, x2=bar_index + 12, y2=stopLossPrice, color=color.red, width=1, style=line.style_dashed) // // Plot target line // line.new(x1=bar_index, y1=targetPrice, x2=bar_index + 12, y2=targetPrice, color=color.blue, width=2, style=line.style_solid) // Entry and exit for Sell signals if (sellCondition) strategy.entry("Sell", strategy.short) // Calculate target and stop loss stopLossPriceSell = prevHigh targetPriceSell = prevLow - (stopLossPriceSell - prevLow) // 1:1 RR target // Set stop loss and target orders strategy.exit("Cover", "Sell", limit=targetPriceSell, stop=stopLossPriceSell) // // Plot entry line // line.new(x1=bar_index, y1=prevLow, x2=bar_index + 12, y2=prevLow, color=color.red, width=2, style=line.style_solid) // // Plot stop loss line // line.new(x1=bar_index, y1=stopLossPriceSell, x2=bar_index + 12, y2=stopLossPriceSell, color=color.green, width=1, style=line.style_dashed) // // Plot target line // line.new(x1=bar_index, y1=targetPriceSell, x2=bar_index + 12, y2=targetPriceSell, color=color.blue, width=2, style=line.style_solid) // Plotting Bollinger Bands with 70% transparency plot(upperBB, color=color.red, title="Upper Bollinger Band", transp=70) plot(lowerBB, color=color.green, title="Lower Bollinger Band", transp=70) plot(basis, color=color.blue, title="Middle Band", transp=70)