यह ब्रेक ऑफ स्ट्रक्चर (बीओएस) और वॉल्यूम कन्फर्मेशन पर आधारित एक बुद्धिमान ट्रेडिंग रणनीति है। यह रणनीति पिछले उच्च या निम्न के मूल्य ब्रेकआउट का पता लगाकर ट्रेडिंग सिग्नल उत्पन्न करती है, जो वॉल्यूम विस्तार की पुष्टि के साथ संयुक्त है। यह ट्रेडिंग विश्वसनीयता और जोखिम नियंत्रण क्षमताओं को बढ़ाने के लिए लगातार पुष्टि आवश्यकताओं और गतिशील लाभ / स्टॉप-लॉस सेटिंग्स सहित कई शर्त सत्यापन तंत्रों का उपयोग करती है।
मूल तर्क में निम्नलिखित प्रमुख तत्व शामिल हैंः
यह एक रणनीति प्रणाली है जो क्लासिक तकनीकी विश्लेषण सिद्धांत को आधुनिक मात्रात्मक व्यापारिक तरीकों के साथ जोड़ती है। कई शर्त सत्यापन और सख्त जोखिम नियंत्रण के माध्यम से, रणनीति अच्छी स्थिरता और विश्वसनीयता का प्रदर्शन करती है। जबकि अनुकूलन की आवश्यकता वाले पहलू हैं, समग्र ढांचे का डिजाइन उचित है और व्यावहारिक अनुप्रयोग मूल्य है। रणनीति के प्रदर्शन को सुझाए गए अनुकूलन दिशाओं के माध्यम से और बेहतर किया जा सकता है।
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-18 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("BOS and Volume Strategy with Confirmation", overlay=true) // Parameters swingLength = input.int(20, title="Swing Length", minval=1) volumeMultiplier = input.float(1.1, title="Volume Multiplier", step=0.1) volumeSMA_length = input.int(10, title="Volume SMA Length", minval=1) takeProfitPercentage = input.float(0.02, title="Take Profit Percentage", step=0.01) stopLossPercentage = input.float(0.15, title="Stop Loss Percentage", step=0.01) // New parameter for stop loss atrLength = input.int(14, title="ATR Length") confirmationBars = input.int(2, title="Confirmation Bars", minval=1) // Calculate Swing Highs and Lows swingHigh = ta.highest(high, swingLength)[1] swingLow = ta.lowest(low, swingLength)[1] // Calculate Volume Moving Average volumeSMA = ta.sma(volume, volumeSMA_length) highVolume = volume > (volumeSMA * volumeMultiplier) // Break of Structure Detection with Confirmation var int bullishCount = 0 var int bearishCount = 0 if (close > swingHigh and highVolume) bullishCount := bullishCount + 1 bearishCount := 0 else if (close < swingLow and highVolume) bearishCount := bearishCount + 1 bullishCount := 0 else bullishCount := 0 bearishCount := 0 bullishBOSConfirmed = (bullishCount >= confirmationBars) bearishBOSConfirmed = (bearishCount >= confirmationBars) // Entry and Exit Conditions var float entryPrice = na // Declare entryPrice as a variable if (bullishBOSConfirmed and strategy.position_size <= 0) entryPrice := close // Use ':=' for assignment strategy.entry("Long", strategy.long) if (strategy.position_size > 0) // Calculate stop loss price stopLossPrice = entryPrice * (1 - stopLossPercentage) strategy.exit("Take Profit Long", from_entry="Long", limit=entryPrice * (1 + takeProfitPercentage), stop=stopLossPrice) if (bearishBOSConfirmed and strategy.position_size >= 0) entryPrice := close // Use ':=' for assignment strategy.entry("Short", strategy.short) if (strategy.position_size < 0) // Calculate stop loss price stopLossPrice = entryPrice * (1 + stopLossPercentage) strategy.exit("Take Profit Short", from_entry="Short", limit=entryPrice * (1 - takeProfitPercentage), stop=stopLossPrice) // Plot Swing Highs and Lows for Visualization plot(swingHigh, title="Swing High", color=color.green, linewidth=1) plot(swingLow, title="Swing Low", color=color.red, linewidth=1)