यह रणनीति बाजार मूल्य पैटर्न की पहचान पर आधारित एक मात्रात्मक ट्रेडिंग प्रणाली है, जिसे मुख्य रूप से 123 बिंदु रिवर्सल पैटर्न की पहचान करके संभावित बाजार उलट अवसरों को पकड़ने के लिए डिज़ाइन किया गया है। यह रणनीति गतिशील होल्डिंग अवधि प्रबंधन को चलती औसत फ़िल्टरिंग के साथ जोड़ती है, व्यापार सटीकता को बढ़ाने के लिए कई शर्त सत्यापन का उपयोग करती है। यह प्रवेश बिंदु परिभाषा के लिए सटीक गणितीय मॉडल का उपयोग करती है और एक सहायक निकास स्थिति के रूप में 200-दिवसीय चलती औसत का उपयोग करती है, एक पूर्ण ट्रेडिंग प्रणाली का गठन करती है।
मूल तर्क मूल्य पैटर्न की पहचान पर आधारित है, जिसमें निम्नलिखित प्रमुख तत्व शामिल हैंः
रणनीति व्यापारियों को सख्त पैटर्न मान्यता और व्यापक जोखिम नियंत्रण प्रणालियों के माध्यम से एक विश्वसनीय बाजार उलट पकड़ उपकरण प्रदान करती है। जबकि कुछ सीमाएं मौजूद हैं, निरंतर अनुकूलन और उपयुक्त पैरामीटर समायोजन रणनीति को विभिन्न बाजार वातावरणों में स्थिर प्रदर्शन बनाए रखने में सक्षम बनाते हैं। व्यापारियों को बेहतर व्यापार परिणाम प्राप्त करने के लिए व्यावहारिक अनुप्रयोगों में रणनीति-विशिष्ट समायोजन के साथ बाजार अनुभव को जोड़ने की सलाह दी जाती है।
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-11 00:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © EdgeTools //@version=5 strategy("123 Reversal Trading Strategy", overlay=true) // Input for number of days to hold the trade daysToHold = input(7, title="Days to Hold Trade") // Input for 20-day moving average maLength = input(200, title="Moving Average Length") // Calculate the 20-day moving average ma20 = ta.sma(close, maLength) // Define the conditions for the 123 reversal pattern (bullish reversal) // Condition 1: Today's low is lower than yesterday's low condition1 = low < low[1] // Condition 2: Yesterday's low is lower than the low three days ago condition2 = low[1] < low[3] // Condition 3: The low two days ago is lower than the low four days ago condition3 = low[2] < low[4] // Condition 4: The high two days ago is lower than the high three days ago condition4 = high[2] < high[3] // Entry condition: All conditions must be true entryCondition = condition1 and condition2 and condition3 and condition4 // Exit condition: Close the position after a certain number of bars or when the price reaches the 20-day moving average exitCondition = ta.barssince(entryCondition) >= daysToHold or close >= ma20 // Execute buy and sell signals if (entryCondition) strategy.entry("Buy", strategy.long) if (exitCondition) strategy.close("Buy")