এটি একটি ইনট্রাডে ট্রেডিং কৌশল যা ভলিউম ওয়েটেড মিডিয়ার প্রাইস (ভিডাব্লুএপি), গড় সত্য পরিসীমা (এটিআর) এবং মূল্য কর্ম বিশ্লেষণকে একত্রিত করে। কৌশলটি গতিশীল স্টপ-লস এবং মুনাফা লক্ষ্য নির্ধারণের জন্য এটিআর ব্যবহার করার সময় ভিডাব্লুএপির সাথে মূল্য ক্রসওভার পর্যবেক্ষণ করে বাজারের প্রবণতা নির্ধারণ করে। মূল ধারণাটি হ'ল যখন দাম ভিডাব্লুএপিতে ফিরে আসে তখন ঝুঁকি ব্যবস্থাপনা নিয়ন্ত্রণ করে ট্রেডিংয়ের সুযোগগুলি সনাক্ত করা।
কৌশলটি বেশ কয়েকটি মূল নীতির উপর ভিত্তি করেঃ
এটি একটি পরিমাণগত ট্রেডিং কৌশল যা প্রযুক্তিগত বিশ্লেষণ এবং গতিশীল ঝুঁকি ব্যবস্থাপনাকে একত্রিত করে। ভিডাব্লুএপি এবং এটিআর এর সংমিশ্রণ কার্যকর ঝুঁকি নিয়ন্ত্রণ বজায় রেখে উদ্দেশ্যমূলক ট্রেডিং সংকেত নিশ্চিত করে। কৌশল নকশা আধুনিক পরিমাণগত ট্রেডিং প্রয়োজনীয়তার সাথে সামঞ্জস্যপূর্ণ, ভাল ব্যবহারিকতা এবং স্কেলযোগ্যতা সরবরাহ করে। প্রস্তাবিত অপ্টিমাইজেশনের মাধ্যমে, আরও পারফরম্যান্সের উন্নতির জন্য জায়গা রয়েছে।
/*backtest start: 2019-12-23 08:00:00 end: 2024-11-25 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Price Action + VWAP + ATR Intraday Strategy", overlay=true) // VWAP Calculation vwapValue = ta.vwap(close) // ATR Calculation (14-period) atr = ta.atr(14) // Price Action Setup for Bullish and Bearish Trades bullishCondition = close > vwapValue and close[1] < vwapValue // Price above VWAP (Bullish bias) and Price action pullback to VWAP bearishCondition = close < vwapValue and close[1] > vwapValue // Price below VWAP (Bearish bias) and Price action rally to VWAP // Set stop loss and take profit based on ATR atrMultiplier = 1.5 longStopLoss = low - atr shortStopLoss = high + atr longTakeProfit = close + (atr * atrMultiplier) shortTakeProfit = close - (atr * atrMultiplier) // Entry and Exit Rules // Bullish Trade: Price pullback to VWAP and a bounce with ATR confirmation if (bullishCondition and ta.crossover(close, vwapValue)) strategy.entry("Long", strategy.long) strategy.exit("Take Profit/Stop Loss", from_entry="Long", limit=longTakeProfit, stop=longStopLoss) // Bearish Trade: Price rally to VWAP and a rejection with ATR confirmation if (bearishCondition and ta.crossunder(close, vwapValue)) strategy.entry("Short", strategy.short) strategy.exit("Take Profit/Stop Loss", from_entry="Short", limit=shortTakeProfit, stop=shortStopLoss) // Plot VWAP on the chart plot(vwapValue, color=color.blue, linewidth=2, title="VWAP") // Plot ATR on the chart for reference (Optional) plot(atr, title="ATR", color=color.orange, linewidth=1)