रणनीति व्यापार संकेतों के लिए आपूर्ति और मांग क्षेत्रों, घातीय चलती औसत (ईएमए), और औसत सच्ची सीमा (एटीआर) ट्रेलिंग स्टॉप का उपयोग करती है। उपयोगकर्ता ईएमए सेटिंग्स और संकेत दृश्यता को समायोजित कर सकते हैं। रणनीति उच्च उच्च (एचएच), निम्न निम्न (एलएल), निम्न उच्च (एलएच), और उच्च निम्न (एचएल) क्षेत्रों को चिह्नित करती है। संकेत तीसरी मोमबत्ती के बाद दिखाए जाते हैं, बैकटेस्टिंग के लिए उपयुक्त हैं।
घातीय चलती औसत (ईएमए):
औसत वास्तविक सीमा (एटीआर):
प्रवृत्ति के लिए ईएमए और अस्थिरता आधारित ट्रैलिंग स्टॉप के लिए एटीआर निर्धारित करने के लिए प्रयोग किया जाता है।
यह
उच्च उच्च (HH): वर्तमान शिखर > पिछला शिखर, ऊपर की ओर गति।
निचला निचला (LL): वर्तमान निचला स्तर < पिछला निचला स्तर, नीचे की ओर गति।
उच्च निम्न (एचएल): वर्तमान निचला स्तर > पिछला निचला स्तर, ऊपर की ओर बढ़ना।
निचला उच्च (एलएच): वर्तमान शिखर < पिछला शिखर, नीचे की ओर जारी।
रुझानों के साथ इस्तेमाल किया जाता है, ताकि उलटफेर या निरंतरता की पहचान की जा सके।
प्रवेश संकेत: तीसरी मोमबत्ती के बंद होने पर पिछले उच्च/निम्न से ऊपर/नीचे खरीदें/बेचें।
बाहर निकलना: एटीआर के आधार पर स्टॉप लॉस का अनुसरण करना।
उचित बैकटेस्ट के लिए कई तकनीकों को जोड़ती है। वास्तविक दुनिया जटिल है, अनुकूलन महत्वपूर्ण है। बुनियादी रणनीति एक्सटेंशन और संयोजन की अनुमति देती है।
/*backtest start: 2023-12-18 00:00:00 end: 2024-01-17 00:00:00 period: 2h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Supply and Demand Zones with EMA and Trailing Stop", shorttitle="SD Zones", overlay=true) showBuySignals = input(true, title="Show Buy Signals", group="Signals") showSellSignals = input(true, title="Show Sell Signals", group="Signals") showHLZone = input(true, title="Show HL Zone", group="Zones") showLHZone = input(true, title="Show LH Zone", group="Zones") showHHZone = input(true, title="Show HH Zone", group="Zones") showLLZone = input(true, title="Show LL Zone", group="Zones") emaLength = input(200, title="EMA Length", group="EMA Settings") atrLength = input(14, title="ATR Length", group="Trailing Stop") atrMultiplier = input(2, title="ATR Multiplier", group="Trailing Stop") // Function to identify supply and demand zones getZones(src, len, mult) => base = request.security(syminfo.tickerid, "D", close) upper = request.security(syminfo.tickerid, "D", high) lower = request.security(syminfo.tickerid, "D", low) multiplier = request.security(syminfo.tickerid, "D", mult) zonetype = base + multiplier * len zone = src >= zonetype [zone, upper, lower] // Identify supply and demand zones [supplyZone, _, _] = getZones(close, high[1] - low[1], 1) [demandZone, _, _] = getZones(close, high[1] - low[1], -1) // Plot supply and demand zones bgcolor(supplyZone ? color.new(color.red, 80) : na) bgcolor(demandZone ? color.new(color.green, 80) : na) // EMA with Linear Weighted method ema = ta.ema(close, emaLength) // Color code EMA based on its relation to candles emaColor = close > ema ? color.new(color.green, 0) : close < ema ? color.new(color.red, 0) : color.new(color.yellow, 0) // Plot EMA plot(ema, color=emaColor, title="EMA") // Entry Signal Conditions after the third candle longCondition = ta.crossover(close, high[1]) and bar_index >= 2 shortCondition = ta.crossunder(close, low[1]) and bar_index >= 2 // Trailing Stop using ATR atrValue = ta.atr(atrLength) trailStop = close - atrMultiplier * atrValue // Strategy Entry and Exit if (longCondition) strategy.entry("Buy", strategy.long) strategy.exit("TrailStop", from_entry="Buy", loss=trailStop) if (shortCondition) strategy.entry("Sell", strategy.short) strategy.exit("TrailStop", from_entry="Sell", loss=trailStop) // Plot Entry Signals plotshape(series=showBuySignals ? longCondition : na, title="Buy Signal", color=color.new(color.green, 0), style=shape.triangleup, location=location.belowbar) plotshape(series=showSellSignals ? shortCondition : na, title="Sell Signal", color=color.new(color.red, 0), style=shape.triangledown, location=location.abovebar) // Plot Trailing Stop plot(trailStop, color=color.new(color.red, 0), title="Trailing Stop") // Plot HH, LL, LH, and HL zones plotshape(series=showHHZone and ta.highest(high, 2)[1] and ta.highest(high, 2)[2] ? 1 : na, title="HH Zone", color=color.new(color.blue, 80), style=shape.triangleup, location=location.abovebar) plotshape(series=showLLZone and ta.lowest(low, 2)[1] and ta.lowest(low, 2)[2] ? 1 : na, title="LL Zone", color=color.new(color.blue, 80), style=shape.triangledown, location=location.belowbar) plotshape(series=showLHZone and ta.highest(high, 2)[1] and ta.lowest(low, 2)[2] ? 1 : na, title="LH Zone", color=color.new(color.orange, 80), style=shape.triangleup, location=location.abovebar) plotshape(series=showHLZone and ta.lowest(low, 2)[1] and ta.highest(high, 2)[2] ? 1 : na, title="HL Zone", color=color.new(color.orange, 80), style=shape.triangledown, location=location.belowbar)