এটি একটি মাল্টি-ইনডিকেটর ট্রেডিং কৌশল যা সুপারট্রেন্ড, এক্সপোনেনশিয়াল মুভিং এভারেজ (ইএমএ) এবং আপেক্ষিক শক্তি সূচক (আরএসআই) একত্রিত করে। কৌশলটি বিভিন্ন মাত্রা থেকে বাজার বিশ্লেষণের মাধ্যমে ট্রেডিংয়ের নির্ভুলতা এবং নির্ভরযোগ্যতা বাড়ানোর জন্য একাধিক সূচকের সুবিধাগুলি ব্যবহার করে।
মূল যুক্তিটি তিনটি প্রধান প্রযুক্তিগত সূচকের সমন্বিত বিশ্লেষণের উপর ভিত্তি করেঃ
ক্রয় সংকেত নিম্নলিখিত সব শর্ত প্রয়োজনঃ
বিক্রয় সংকেত নিম্নলিখিত সব শর্ত প্রয়োজনঃ
এটি একটি সু-গঠিত, যৌক্তিকভাবে সুস্থ মাল্টি-দর্শক পরিমাণগত ট্রেডিং কৌশল যা প্রবণতা অনুসরণ, গতি বিশ্লেষণ, এবং overbought / oversold সূচকগুলির সংমিশ্রণ করে একটি বিস্তৃত ট্রেডিং সিস্টেম তৈরি করে। কৌশলটির শক্তি উন্নত সংকেত নির্ভরযোগ্যতা এবং স্পষ্ট ঝুঁকি নিয়ন্ত্রণ প্রক্রিয়াগুলির জন্য এর মাল্টি-দর্শক ক্রস-বৈধকরণে রয়েছে। যদিও অন্তর্নিহিত ঝুঁকি রয়েছে, ক্রমাগত অপ্টিমাইজেশন এবং পরিমার্জন বিভিন্ন বাজারের পরিবেশে স্থিতিশীল কর্মক্ষমতা বজায় রাখতে সহায়তা করতে পারে।
/*backtest start: 2019-12-23 08:00:00 end: 2024-12-09 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © satyakipaul3744 //@version=6 //@version=6 strategy("Supertrend + EMA Crossover + RSI Strategy", overlay=true) // --- Input Parameters --- supertrend_length = input.int(10, title="Supertrend Length", minval=1) supertrend_multiplier = input.float(3.0, title="Supertrend Multiplier", step=0.1) short_ema_length = input.int(9, title="Short EMA Length") long_ema_length = input.int(21, title="Long EMA Length") rsi_length = input.int(14, title="RSI Length") rsi_overbought = input.int(70, title="RSI Overbought Level") rsi_oversold = input.int(30, title="RSI Oversold Level") // --- Indicator Calculations --- // Supertrend calculation [supertrend, direction] = ta.supertrend(supertrend_multiplier, supertrend_length) // EMA calculations short_ema = ta.ema(close, short_ema_length) long_ema = ta.ema(close, long_ema_length) // RSI calculation rsi = ta.rsi(close, rsi_length) // --- Buy/Sell Conditions --- // Buy condition: Supertrend bullish, EMA crossover, RSI not overbought buy_condition = direction > 0 and ta.crossover(short_ema, long_ema) and rsi < rsi_overbought // Sell condition: Supertrend bearish, EMA crossunder, RSI not oversold sell_condition = direction < 0 and ta.crossunder(short_ema, long_ema) and rsi > rsi_oversold // --- Plot Buy/Sell signals --- plotshape(buy_condition, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY") plotshape(sell_condition, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL") // --- Strategy Orders for Backtesting --- if buy_condition strategy.entry("Buy", strategy.long) if sell_condition strategy.close("Buy") // --- Plot Supertrend --- plot(supertrend, color=direction > 0 ? color.green : color.red, linewidth=2, title="Supertrend") // --- Plot EMAs --- plot(short_ema, color=color.blue, title="Short EMA") plot(long_ema, color=color.orange, title="Long EMA") // --- Strategy Performance --- // You can see the strategy performance in the "Strategy Tester" tab.