यह रणनीति टीटीएम संकेतक पर आधारित एक गतिशील ग्रिड ट्रेडिंग प्रणाली है, जो उच्च और निम्न के घातीय चलती औसत (ईएमए) की गणना करके बाजार की प्रवृत्ति की दिशा निर्धारित करती है, और गतिशील रूप से अद्यतन आधार मूल्य के आसपास ग्रिड ट्रेडिंग प्रणाली को तैनात करती है। ग्रिड की दिशा और मूल्य स्तर प्रवृत्ति के अनुसार समायोजित होते हैं, जब मूल्य पूर्वनिर्धारित ग्रिड स्तरों को पार करता है, तो प्रत्येक व्यापार खाते की इक्विटी का एक निश्चित प्रतिशत जोखिम में डालता है।
मूल तर्क निम्नलिखित चरणों के माध्यम से कार्यान्वित TTM राज्य गणना में निहित हैः
ग्रिड ट्रेडिंग प्रणाली गतिशील रूप से टीटीएम स्थिति के आधार पर समायोजित होती हैः
यह रणनीति एक अनुकूलनशील, जोखिम-नियंत्रित ट्रेडिंग प्रणाली बनाने के लिए गतिशील ग्रिड ट्रेडिंग के साथ टीटीएम ट्रेंड डिटेक्शन को जोड़ती है। ग्रिड दिशा और मूल्य स्तर के गतिशील समायोजन के माध्यम से, रणनीति प्रभावी रूप से विभिन्न बाजार वातावरण के अनुकूल हो सकती है। जबकि अंतर्निहित जोखिम मौजूद हैं, उचित पैरामीटर सेटिंग और अनुकूलन उपायों के माध्यम से, रणनीति अच्छा व्यावहारिक मूल्य और विकास क्षमता प्रदर्शित करती है।
/*backtest start: 2024-12-04 00:00:00 end: 2024-12-11 00:00:00 period: 1m basePeriod: 1m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("TTM Grid Strategy", overlay=true) // Input parameters int ttmPeriod = input.int(6, minval=1, title="TTM Period") int gridLevels = input.int(5, minval=2, title="Grid Levels") float gridSpacing = input.float(0.01, minval=0.0001, title="Grid Spacing (%)") // Calculate TTM State ttmState() => lowMA = ta.ema(low, ttmPeriod) highMA = ta.ema(high, ttmPeriod) lowThird = (highMA - lowMA) / 3 + lowMA highThird = 2 * (highMA - lowMA) / 3 + lowMA if close > highThird 1 else if close < lowThird 0 else -1 // State tracking variables var float gridBasePrice = 0.0 var int gridDirection = -1 // Determine grid state updateGridState(float currentClose, int currentState) => float newBasePrice = gridBasePrice int newDirection = gridDirection if currentState != -1 and currentState != gridDirection newBasePrice := currentClose newDirection := currentState [newBasePrice, newDirection] // Calculate grid levels calcGridLevels(float basePrice, int direction, int levels) => float[] buyLevels = array.new_float(levels) float[] sellLevels = array.new_float(levels) for i = 1 to levels multiplier = i * gridSpacing if direction == 1 // Buy grid array.set(buyLevels, i-1, basePrice * (1 - multiplier)) array.set(sellLevels, i-1, basePrice * (1 + multiplier)) else // Sell grid array.set(buyLevels, i-1, basePrice * (1 + multiplier)) array.set(sellLevels, i-1, basePrice * (1 - multiplier)) [buyLevels, sellLevels] // Execute grid trades executeGridTrades(float basePrice, int direction, int levels) => [buyLevels, sellLevels] = calcGridLevels(basePrice, direction, levels) for i = 0 to levels - 1 float buyLevel = array.get(buyLevels, i) float sellLevel = array.get(sellLevels, i) if direction == 1 // Buy grid if low <= buyLevel strategy.entry("GridBuy" + str.tostring(i), strategy.long, comment="Buy Level " + str.tostring(i)) if high >= sellLevel strategy.entry("GridSell" + str.tostring(i), strategy.short, comment="Sell Level " + str.tostring(i)) else // Sell grid if high >= buyLevel strategy.entry("GridBuy" + str.tostring(i), strategy.long, comment="Buy Level " + str.tostring(i)) if low <= sellLevel strategy.entry("GridSell" + str.tostring(i), strategy.short, comment="Sell Level " + str.tostring(i)) // Main strategy logic currentState = ttmState() [newGridBasePrice, newGridDirection] = updateGridState(close, currentState) // Update global variables if newGridBasePrice != gridBasePrice gridBasePrice := newGridBasePrice if newGridDirection != gridDirection gridDirection := newGridDirection // Execute grid trades executeGridTrades(newGridBasePrice, newGridDirection, gridLevels) // Visualization plotColor = newGridDirection == 1 ? color.green : color.red plot(newGridBasePrice, color=plotColor, style=plot.style_cross)