
यह डोन्चियन चैनल पर आधारित एक गति ब्रेकआउट ट्रेडिंग रणनीति है, जो दो प्रमुख स्थितियों को जोड़ती है: मूल्य ब्रेकआउट और वॉल्यूम पुष्टि। यह रणनीति बाजार की ऊपर की ओर की प्रवृत्ति को यह देखकर पकड़ती है कि क्या कीमत पूर्वनिर्धारित मूल्य सीमा से बाहर निकलती है और उसे मात्रा समर्थन की आवश्यकता है। यह रणनीति चैनल की स्थिरता में सुधार करने के लिए हिस्टैरिसीस मापदंडों का उपयोग करती है और लचीली निकास स्थिति का चयन प्रदान करती है।
रणनीति के मूल तर्क में निम्नलिखित प्रमुख भाग शामिल हैं:
यह एक अच्छी तरह से डिजाइन की गई और तार्किक रूप से स्पष्ट प्रवृत्ति-अनुसरण रणनीति है। मूल्य सफलताओं और मात्रा पुष्टि को संयोजित करके, रणनीति विश्वसनीयता सुनिश्चित करते हुए लचीलापन बनाए रखती है। रणनीति का पैरामीट्रिक डिजाइन इसे अत्यधिक अनुकूलनीय बनाता है, लेकिन इसके लिए निवेशकों को विशिष्ट बाजार स्थितियों के आधार पर अनुकूलन समायोजन करने की भी आवश्यकता होती है। कुल मिलाकर, यह एक रणनीतिक ढांचा है जो आगे और अधिक अनुकूलन और अभ्यास का हकदार है।
/*backtest
start: 2019-12-23 08:00:00
end: 2025-01-15 08:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT","balance":49999}]
*/
//@version=6
strategy("Breakout Strategy", overlay=true, calc_on_every_tick=false, initial_capital=10000, default_qty_type=strategy.percent_of_equity, default_qty_value=100, commission_type=strategy.commission.percent, commission_value=0.1, pyramiding=1, fill_orders_on_standard_ohlc=true)
// Input Parameters
start_date = input(timestamp("2018-01-01 00:00"), "Start Date")
end_date = input(timestamp("2060-01-01 00:00"), "End Date")
in_time_range = true
length = input.int(27, title="Donchian Channel Length", minval=1, tooltip="Number of bars used to calculate the Donchian channel.")
lag = input.int(10, title="Donchian Channel Offset", minval=1, tooltip = "Offset to delay the Donchian channel, enhancing stability.")
volume_mult = input.float(1.4, title="Volume Multiplier", minval=0.1, step=0.1, tooltip="Multiplier for the average volume to filter breakout conditions.")
closing_condition = input.string("Mid", title="Trade Closing Band", options= ["Upper","Lower","Mid"], tooltip = "Donchian Channel Band to use for exiting trades: Upper, Lower, or Middle.") //
// Donchian Channel (Lagged for Stability)
upper_band = ta.highest(high[lag], length)
lower_band = ta.lowest(low[lag], length)
middle_band = (upper_band + lower_band) / 2
plot(upper_band, color=color.blue, title="Upper Band (Lagged)")
plot(middle_band, color=color.orange, title="Middle Band")
plot(lower_band, color=color.blue, title="Lower Band (Lagged)")
// Volume Filter
avg_volume = ta.sma(volume, length)
volume_condition = volume > avg_volume * volume_mult
// Long Breakout Condition
long_condition = close > upper_band and volume_condition
bool reverse_exit_condition = false
// Exit Condition (Close below the middle line)
if closing_condition == "Lower"
reverse_exit_condition := close < lower_band
else if closing_condition == "Upper"
reverse_exit_condition := close < upper_band
else
reverse_exit_condition := close < middle_band
// Long Strategy: Entry and Exit
if in_time_range and long_condition
strategy.entry("Breakout Long", strategy.long)
// Exit on Reverse Signal
if in_time_range and reverse_exit_condition
strategy.close("Breakout Long", comment="Reverse Exit")