اس حکمت عملی کا بنیادی خیال ایک مقررہ رسک فی صد اور 250x سیمولیٹڈ لیوریج کی بنیاد پر ایک کمپاؤنڈ پوزیشن سائزنگ نقطہ نظر کا استعمال کرتے ہوئے اعلی تجارتی حجم کے دوران بریکآؤٹس کو ٹریک کرنا ہے۔ اس کا مقصد بھاری فروخت کے دباؤ کے بعد ممکنہ الٹ جانے کے مواقع کو حاصل کرنا ہے۔
لمبی انٹری سگنل اس وقت چلتے ہیں جب:
پوزیشن سائزنگ کا حساب اس طرح کیا جاتا ہے:
باہر نکلنے کے قوانین:
جب منافع کا فیصد پوسٹ پروفیٹ پیکٹ اسٹاپ نقصان (-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")