এই কৌশলটির মূল ধারণা হ'ল একটি সংজ্ঞায়িত ঝুঁকি শতাংশ এবং 250x সিমুলেটেড লিভারেজের উপর ভিত্তি করে একটি যৌগিক অবস্থান সাইজিং পদ্ধতি ব্যবহার করে উচ্চ বাণিজ্যিক ভলিউমের সময় ব্রেকআউটগুলি ট্র্যাক করা। এর লক্ষ্য ভারী বিক্রয় চাপের পরে সম্ভাব্য বিপরীতমুখী সুযোগগুলি ক্যাপচার করা।
লং এন্ট্রি সিগন্যাল তখনই সক্রিয় হয় যখনঃ
পজিশন ডিজাইনিং গণনা করা হয়ঃ
প্রস্থান নিয়মঃ
লং পজিশন বন্ধ করুন যখন মুনাফা শতাংশ postProfitPct স্টপ লস (-0.14%) বা মুনাফা গ্রহণ (4.55%) এ পৌঁছায়।
এই কৌশলটির সুবিধাঃ
বিবেচনা করার ঝুঁকিঃ
নিম্নলিখিত উপায়ে ঝুঁকি কমাতে পারেঃ
উন্নতির ক্ষেত্র:
সংক্ষেপে, এটি বিপরীতমুখী এবং অপ্রতিরোধ্য লাভগুলি ক্যাপচার করার জন্য একটি মোটামুটি সহজ এবং সরল কৌশল। তবে ঝুঁকি রয়েছে এবং সতর্ক বাস্তব বিশ্বের পরীক্ষা অপরিহার্য। অপ্টিমাইজেশনের মাধ্যমে এটি আরও শক্তিশালী এবং ব্যবহারিক করা যেতে পারে।
/*backtest start: 2023-02-11 00:00:00 end: 2024-02-17 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("High Volume Low Breakout (Compounded Position Size)", overlay=true, initial_capital=1000) // Define input for volume threshold volThreshold = input.int(250, "Volume Threshold") // Define input for risk per trade as a percentage of total equity riskPercentage = input.float(10, "Risk Percentage") // Calculate volume vol = volume // Check for high volume and low lower than the previous bar highVolume = vol > volThreshold lowLowerThanPrevBar = low < low[1] // Calculate position profit percentage posProfitPct = 100 * (close - strategy.position_avg_price) / strategy.position_avg_price // Calculate the position size based on risk percentage and total account equity equity = strategy.equity riskAmount = (equity * riskPercentage / 100) / (close - strategy.position_avg_price) // Calculate leverage (250x in this case) leverage = 250 // Calculate the position size in contracts/lots to trade positionSize = riskAmount * leverage // Check if the current bar's close is negative when it has high volume negativeCloseWithHighVolume = highVolume and close < close[1] // Enter long position as soon as volume exceeds the threshold, low is lower than the previous bar, and the current bar's close is negative if highVolume and lowLowerThanPrevBar and negativeCloseWithHighVolume and strategy.position_size == 0 strategy.entry("Long", strategy.long, qty=positionSize, comment="Long Entry") // Exit long position intrabar if profit goes below -0.14% or above 1% if strategy.position_size > 0 if posProfitPct < -0.14 or posProfitPct > 4.55 strategy.close("Long")