यह रणनीति दो तकनीकी संकेतकों को जोड़ती हैः डोंचियन चैनल और सरल चलती औसत (एसएमए) । यह एक लंबी स्थिति खोलता है जब कीमत डोंचियन चैनल के निचले बैंड से नीचे टूट जाती है और एसएमए के ऊपर बंद हो जाती है। इसके विपरीत, यह एक छोटी स्थिति खोलता है जब कीमत डोंचियन चैनल के ऊपरी बैंड से ऊपर टूट जाती है और एसएमए के नीचे बंद हो जाती है। लंबी स्थिति बंद हो जाती है जब कीमत डोंचियन चैनल के ऊपरी बैंड तक पहुंच जाती है, जबकि छोटी स्थिति बंद हो जाती है जब कीमत निचले बैंड तक पहुंच जाती है। यह रणनीति मजबूत रुझान वाले बाजारों के लिए उपयुक्त है।
डायनेमिक डोंचियन चैनल और सिंपल मूविंग एवरेज कॉम्बिनेशन रणनीति एक सरल और उपयोग करने में आसान मात्रात्मक ट्रेडिंग रणनीति ढांचा है। यह प्रवृत्ति के बाद और अस्थिरता ब्रेकआउट के दृष्टिकोण से प्रवेश और निकास तर्क का निर्माण करता है, जिससे यह मजबूत रुझानों वाले उपकरणों के लिए उपयुक्त हो जाता है। हालांकि, रणनीति अक्सर रेंजबाउंड बाजारों में खराब प्रदर्शन करती है, और इसकी पैरामीटर मजबूती औसत दर्जे की होती है। सहायक प्रवेश शर्तों, गतिशील लाभ लेने और पैरामीटर स्व-अनुकूलन तंत्रों को पेश करके रणनीति की अनुकूलन क्षमता और मजबूती में सुधार किया जा सकता है। कुल मिलाकर, यह रणनीति अधिक उन्नत मात्रात्मक रणनीतियों को बनाने के लिए आगे संशोधित और सुधार करने के लिए एक बुनियादी ढांचा रणनीति के रूप में कार्य कर सकती है।
/*backtest start: 2024-05-01 00:00:00 end: 2024-05-31 23:59:59 period: 4h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("FBK Donchian Channel Strategy", overlay=true) // Inputs donchian_period = input.int(20, title="Donchian Channel Period") donchian_offset = input.int(1, title="Donchian Channel Offset") sma_period = input.int(200, title="SMA Period") start_date = input(timestamp("2023-01-01 00:00 +0000"), title="Start Date") end_date = input(timestamp("2023-12-31 23:59 +0000"), title="End Date") trade_type = input.string("Both", title="Trade Type", options=["Buy Only", "Sell Only", "Both"]) // Calculate indicators donchian_upper = ta.highest(high, donchian_period)[donchian_offset] donchian_lower = ta.lowest(low, donchian_period)[donchian_offset] sma = ta.sma(close, sma_period) // Plot indicators plot(donchian_upper, color=color.red, title="Donchian Upper") plot(donchian_lower, color=color.green, title="Donchian Lower") plot(sma, color=color.blue, title="SMA") // Helper function to check if within testing period is_in_testing_period() => true // Entry conditions long_condition = low <= donchian_lower and close > sma short_condition = high >= donchian_upper and close < sma // Exit conditions exit_long_condition = high >= donchian_upper exit_short_condition = low <= donchian_lower // Open long position if (is_in_testing_period() and (trade_type == "Buy Only" or trade_type == "Both") and long_condition) strategy.entry("Long", strategy.long) // Close long position if (is_in_testing_period() and exit_long_condition) strategy.close("Long") // Open short position if (is_in_testing_period() and (trade_type == "Sell Only" or trade_type == "Both") and short_condition) strategy.entry("Short", strategy.short) // Close short position if (is_in_testing_period() and exit_short_condition) strategy.close("Short") // Close all positions at the end of the testing period if not is_in_testing_period() strategy.close_all()