এই কৌশলটি একাধিক প্রযুক্তিগত সূচককে ব্যাপকভাবে বিবেচনা করে এবং যখন বাজারে শক্তিশালী উত্থান গতি রয়েছে বলে বিবেচিত হয় তখন দীর্ঘ অবস্থান নেয়। বিশেষত, এই কৌশলটি এই 5 টি সূচক MACD, RSI, ADX, স্টোক্যাস্টিক এবং বোলিংজার ব্যান্ডকে বিবেচনা করে। যখন এই সমস্ত সূচক একই সাথে উত্থান মানদণ্ড পূরণ করে তখন এটি ক্রয় সংকেত উত্পন্ন করে।
এই কৌশলটির মূল যুক্তি হ'ল যখন বাজারটি শক্তিশালী উত্থান গতির জন্য নির্ধারিত হয় তখন কিনতে হয়। নির্দিষ্ট বিচার নিয়মগুলি নিম্নরূপঃ
যখন উপরের পাঁচটি শর্ত পূরণ হয়, তখন বাজারকে শক্তিশালী উত্থানমুখী বলে মনে করা হয়। এই সময়ে, একটি দীর্ঘ অবস্থান নেওয়া হবে।
৫ মিনিটের বন্ধের মূল্য ৫ মিনিটের ইএমএ-র নিচে গেলে বর্তমান পজিশন বন্ধ করার নিয়ম রয়েছে।
এই কৌশলটির সুবিধাগুলির মধ্যে রয়েছেঃ
সাধারণভাবে, এই কৌশলটি সঠিক বিচার, যথাযথ ঝুঁকি নিয়ন্ত্রণ এবং স্বল্পমেয়াদী উত্থান প্রবণতা ধরার জন্য উপযুক্ত।
এই কৌশলটির কিছু ঝুঁকিও রয়েছেঃ
সংক্ষেপে, এই কৌশলটির প্রধান ঝুঁকিগুলি ভুল প্রবেশ এবং অকাল প্রস্থান। প্যারামিটার টিউনিং এবং নিয়মের সামঞ্জস্যের মাধ্যমে এগুলি হ্রাস করা দরকার।
এই কৌশলটি নিম্নলিখিত দিকগুলিতে অনুকূলিত করা যেতে পারেঃ
প্যারামিটার এবং নিয়ম অপ্টিমাইজেশনের মাধ্যমে এই কৌশলটির লাভজনকতা এবং ঝুঁকি নিয়ন্ত্রণের ক্ষমতা আরও উন্নত করা যেতে পারে।
এই কৌশলটি তুলনামূলকভাবে কঠোর প্রস্থান সহ একাধিক সূচককে একত্রিত করে উত্থান প্রবণতা বিচার করে। এটিতে সঠিক বিচার রয়েছে, স্বল্পমেয়াদী প্রবণতা এবং যথাযথ ঝুঁকি নিয়ন্ত্রণ করতে সক্ষম। পরামিতি এবং ট্রেডিং নিয়মের উপর অবিচ্ছিন্ন অপ্টিমাইজেশন কৌশলটিকে আরও উন্নত করতে পারে। সংক্ষেপে, এটি শক্তিশালী ব্যবহারযোগ্যতার সাথে একটি ব্যবহারিক কৌশল।
/*backtest start: 2022-11-15 00:00:00 end: 2023-11-21 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © makarandpatil // This strategy is for Bank Nifty instrument and for intraday purpose only // It checks for various indicators and gives a buy signal when all conditions are met // Bank Nifty when in momentum gives 100-200 points in spot in 5-15 min which is how long the trade duration should be // Issues - The custom script as per TradingView Pinescripting has an issue of repaint // More information on repainting issue in this link - https://www.tradingview.com/pine-script-docs/en/v5/concepts/Repainting.html // Use the script alert only to get notified, however check all the parameters individually before taking the trade // Also, please perform a backtesting and deep backtesting of this strategy to see if the strategy gave correct buy signals in the past // The script is made for testing purposes only and is in beta mode. Please use at own risk. //@version=5 strategy("BankNifty_Bullish_Intraday", overlay=true, margin_long = 100, margin_short = 100) // Variables StochLength = input(14, title="Stochastic Length") smoothK = input(3, title="%K Smoothing") smoothD = input(3, title="%D Smoothing") //INDICATOR CALCULATIONS // 1. MACD [macdLine, signalLine, histLine] = ta.macd(close[0],12,26,9) macd5 = request.security(syminfo.tickerid, "5", macdLine) macd15 = request.security(syminfo.tickerid,"15",macdLine) macd60 = request.security(syminfo.tickerid,"60",macdLine) // 2. RSI Calculation xRSI = ta.rsi(close, 14) // 3. ADX calculation [diplus, diminus, adx] = ta.dmi(14,14) // plot(adx,color = color.black) // 4. Stochastic Calculation k = ta.sma(ta.stoch(close, high, low, StochLength), smoothK) d = ta.sma(k, smoothD) // 5. Bollinger Band calculation [middle, upper, lower] = ta.bb(close, 20, 2) //CONDITIONS // 1. Conditions for MACD macd5Uptick = macd5[0] > macd5[1] macd15Uptick = macd15[0] > macd15[1] macd60Uptick = macd60[0] >= macd60[1] // 2. Condition for xRSI RSIStrong = xRSI > 60 // 3. Condition for ADX ADXUngali = adx >= 12 // 4. Condition for Stochastic StochPCO = k > d // 5. Condition for Bollinger Band BBCU = upper > upper [1] //Evaluate the long condition // longCondition = macd5Uptick and macd15Uptick and RSIStrong and ADXUngali and StochPCO and BBCU longCondition = macd5Uptick and macd15Uptick and macd60Uptick and RSIStrong and ADXUngali and StochPCO and BBCU // longCondition = macd5Uptick and macd15Uptick and RSIStrong and ADXUngali and StochPCO and BBCU if (longCondition) strategy.entry("Buy", strategy.long,alert_message = "BankNifty_Buy_Momentum") shortCondition = close < ta.ema(close,5) if (shortCondition) strategy.entry("BuySquareoff", strategy.short, alert_message = "BankNifty_Closed_Below_5EMA")