এই কৌশলটি একটি প্রবণতা অনুসরণকারী বিকল্প ট্রেডিং সিস্টেম যা একাধিক প্রযুক্তিগত সূচককে একত্রিত করে। এটি প্রবণতা নিশ্চিতকরণের জন্য এসএমএ এবং ভিডাব্লুএপি সহ মূল সংকেত হিসাবে ইএমএ ক্রসওভার ব্যবহার করে, যখন সিগন্যাল ফিল্টারিংয়ের জন্য অতিরিক্ত সূচক হিসাবে এমএসিডি এবং আরএসআই ব্যবহার করে। কৌশলটি ঝুঁকি পরিচালনার জন্য স্থির লাভের মাত্রা ব্যবহার করে এবং কঠোর প্রবেশের শর্ত এবং অবস্থান পরিচালনার মাধ্যমে ব্যবসায়ের সাফল্য বাড়ায়।
কৌশলটি প্রাথমিক ট্রেডিং সিগন্যাল হিসাবে 8 পিরিয়ড এবং 21 পিরিয়ড ইএমএগুলির ক্রসওভার ব্যবহার করে। যখন স্বল্পমেয়াদী ইএমএ দীর্ঘমেয়াদী ইএমএ অতিক্রম করে এবং নিম্নলিখিত শর্তগুলি পূরণ করে তখন একটি দীর্ঘ (কল) সংকেত ট্রিগার হয়ঃ দাম 100 এবং 200 পিরিয়ড এসএমএ উভয়ের উপরে থাকে, এমএসিডি লাইন সংকেত লাইনের উপরে থাকে এবং আরএসআই 50 এর উপরে থাকে। শর্ট (পুট) সংকেতগুলি বিপরীত অবস্থার অধীনে ট্রিগার হয়। ভিডাব্লুএপি তুলনামূলক মূল্যের অবস্থান মূল্যায়ন করতে সহায়তা করার জন্য একটি মূল্য-পরিমিত রেফারেন্স হিসাবে অন্তর্ভুক্ত করা হয়। প্রতিটি বাণিজ্য 5% লাভের স্তরের সাথে 1 চুক্তির একটি নির্দিষ্ট অবস্থান আকার ব্যবহার করে। কৌশলটি একটি অবস্থান অবস্থানটি ট্র্যাক করে একটি সময়ে শুধুমাত্র একটি অবস্থান রাখা হয় তা নিশ্চিত করার জন্য একটি পতাকা ওপেন ব্যবহার করে।
এটি একটি সু-গঠিত, যৌক্তিকভাবে সুষ্ঠু মাল্টি-দর্শক প্রবণতা অনুসরণকারী বিকল্প ট্রেডিং কৌশল। এটি একাধিক প্রযুক্তিগত সূচক সমন্বয় করে ট্রেডিং সংকেতের নির্ভরযোগ্যতা বাড়ায় এবং স্থির লাভের মাত্রা ব্যবহার করে ঝুঁকি পরিচালনা করে। যদিও কৌশলটির কিছু অন্তর্নিহিত ঝুঁকি রয়েছে, প্রস্তাবিত অপ্টিমাইজেশান দিকগুলি এর স্থিতিশীলতা এবং লাভজনকতা আরও উন্নত করতে পারে। কৌশলটির ভিজ্যুয়ালাইজেশন ডিজাইন ব্যবসায়ীদের স্বজ্ঞাতভাবে বুঝতে এবং ট্রেডিং সংকেতগুলি কার্যকর করতে সহায়তা করে।
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-18 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("OptionsMillionaire Strategy with Take Profit Only", overlay=true, default_qty_type=strategy.fixed, default_qty_value=1) // Define custom magenta color magenta = color.rgb(255, 0, 255) // RGB for magenta // Input settings for Moving Averages ema8 = ta.ema(close, 8) ema21 = ta.ema(close, 21) sma100 = ta.sma(close, 100) sma200 = ta.sma(close, 200) vwap = ta.vwap(close) // Fixed VWAP calculation // Input settings for MACD and RSI [macdLine, signalLine, _] = ta.macd(close, 12, 26, 9) rsi = ta.rsi(close, 14) // Define trend direction isBullish = ema8 > ema21 and close > sma100 and close > sma200 isBearish = ema8 < ema21 and close < sma100 and close < sma200 // Buy (Call) Signal callSignal = ta.crossover(ema8, ema21) and isBullish and macdLine > signalLine and rsi > 50 // Sell (Put) Signal putSignal = ta.crossunder(ema8, ema21) and isBearish and macdLine < signalLine and rsi < 50 // Define Position Size and Take-Profit Level positionSize = 1 // Position size set to 1 (each trade will use one contract) takeProfitPercent = 5 // Take profit is 5% // Variables to track entry price and whether the position is opened var float entryPrice = na // To store the entry price var bool positionOpen = false // To check if a position is open // Backtesting Execution if callSignal and not positionOpen // Enter long position (call) strategy.entry("Call", strategy.long, qty=positionSize) entryPrice := close // Store the entry price positionOpen := true // Set position as opened if putSignal and not positionOpen // Enter short position (put) strategy.entry("Put", strategy.short, qty=positionSize) entryPrice := close // Store the entry price positionOpen := true // Set position as opened // Only check for take profit after position is open if positionOpen // Calculate take-profit level (5% above entry price for long, 5% below for short) takeProfitLevel = entryPrice * (1 + takeProfitPercent / 100) // Exit conditions (only take profit) if strategy.position_size > 0 // Long position (call) if close >= takeProfitLevel strategy.exit("Take Profit", "Call", limit=takeProfitLevel) if strategy.position_size < 0 // Short position (put) if close <= takeProfitLevel strategy.exit("Take Profit", "Put", limit=takeProfitLevel) // Reset position when it is closed (this happens when an exit is triggered) if strategy.position_size == 0 positionOpen := false // Reset positionOpen flag // Plot EMAs plot(ema8, color=magenta, linewidth=2, title="8 EMA") plot(ema21, color=color.green, linewidth=2, title="21 EMA") // Plot SMAs plot(sma100, color=color.orange, linewidth=1, title="100 SMA") plot(sma200, color=color.blue, linewidth=1, title="200 SMA") // Plot VWAP plot(vwap, color=color.white, style=plot.style_circles, title="VWAP") // Highlight buy and sell zones bgcolor(callSignal ? color.new(color.green, 90) : na, title="Call Signal Background") bgcolor(putSignal ? color.new(color.red, 90) : na, title="Put Signal Background") // Add buy and sell markers (buy below, sell above) plotshape(series=callSignal, style=shape.labelup, location=location.belowbar, color=color.green, text="Buy", title="Call Signal Marker") plotshape(series=putSignal, style=shape.labeldown, location=location.abovebar, color=color.red, text="Sell", title="Put Signal Marker")