এই কৌশলটি MACD সূচকের দ্বৈত চলমান গড়ের ক্রসওভার গণনা করে ক্রয় এবং বিক্রয় সংকেত সনাক্ত করে। এটি ট্রেডিং সংকেত নির্দেশ করতে চার্টটিতে তীরগুলি গ্রাফ করে।
কৌশলটি প্রথমে দ্রুত রেখা (12 পিরিয়ড ইএমএ), ধীর রেখা (26 পিরিয়ড ইএমএ) এবং এমএসিডি পার্থক্য গণনা করে। এটি দ্রুত এবং ধীর রেখাগুলির ক্রসওভারের উপর ভিত্তি করে দীর্ঘ এবং সংক্ষিপ্ত সংকেতগুলি নির্ধারণ করে, পাশাপাশি এমএসিডি পার্থক্যের ইতিবাচক / নেতিবাচক মানঃ
মিথ্যা সংকেতগুলি ফিল্টার করতে, কোডটি পূর্ববর্তী মোমবাতিগুলির সংকেতগুলিও পরীক্ষা করে। বর্তমান সংকেতটি কেবলমাত্র যদি পূর্ববর্তী মোমবাতিগুলির বিপরীত সংকেত থাকে (ক্রয় বনাম বিক্রয় বা বিপরীতভাবে) তখনই ট্রিগার হয়।
উপরন্তু, ক্রয় এবং বিক্রয় সংকেত নির্দেশ করার জন্য চার্টে তীরের আকারগুলি চিহ্নিত করা হয়।
এই কৌশলটির সুবিধাগুলির মধ্যে রয়েছেঃ
এই কৌশলটির কিছু ঝুঁকিঃ
কৌশল উন্নত করার কিছু উপায়:
ডুয়াল মুভিং এভারেজ ক্রসওভার তীর কৌশলটি মোটামুটি সহজ এবং ব্যবহারিক। দুটি মুভিং এভারেজ এবং এমএসিডি পার্থক্য ফিল্টারিংয়ের ক্রসওভার ব্যবহার করে, এটি মধ্যম এবং দীর্ঘমেয়াদী প্রবণতার সময় এন্ট্রি এবং প্রস্থানগুলি সনাক্ত করে, অনুপস্থিত মূল্য বিপরীততা এড়ায়। তীর সংকেতগুলি পরিষ্কার অপারেশন গাইডেন্সও সরবরাহ করে। প্যারামিটার টিউনিং, অতিরিক্ত ফিল্টার এবং অভিযোজনযোগ্য অপ্টিমাইজেশনের মাধ্যমে স্থিতিশীলতা এবং লাভজনকতার আরও উন্নতি অর্জন করা যেতে পারে।
/*backtest start: 2022-11-14 00:00:00 end: 2023-11-20 00:00:00 period: 1d basePeriod: 1h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=3 //Daniels stolen code strategy(shorttitle="Daniels Stolen Code", title="Daniels Stolen Code", overlay=true, calc_on_order_fills=true, pyramiding=0) //Define MACD Variables fast = 12, slow = 26 fastMACD = ema(hlc3, fast) slowMACD = ema(hlc3, slow) macd = fastMACD - slowMACD signal = sma(macd, 9) hist = macd - signal currMacd = hist[0] prevMacd = hist[1] currPrice = hl2[0] prevPrice = hl2[1] buy = currPrice > prevPrice and currMacd > prevMacd sell = currPrice < prevPrice and currMacd < prevMacd neutral = (currPrice < prevPrice and currMacd > prevMacd) or (currPrice > prevPrice and currMacd < prevMacd) //Plot Arrows timetobuy = buy==1 and (sell[1]==1 or (neutral[1]==1 and sell[2]==1) or (neutral[1]==1 and neutral[2]==1 and sell[3]==1) or (neutral[1]==1 and neutral[2]==1 and neutral[3]==1 and sell[4]==1) or (neutral[1]==1 and neutral[2]==1 and neutral[3]==1 and neutral[4]==1 and sell[5]==1) or (neutral[1]==1 and neutral[2]==1 and neutral[3]==1 and neutral[4]==1 and neutral[5]==1 and sell[6]==1)) timetosell = sell==1 and (buy[1]==1 or (neutral[1]==1 and buy[2]==1) or (neutral[1]==1 and neutral[2]==1 and buy[3]==1) or (neutral[1]==1 and neutral[2]==1 and neutral[3]==1 and buy[4]==1) or (neutral[1]==1 and neutral[2]==1 and neutral[3]==1 and neutral[4]==1 and buy[5]==1) or (neutral[1]==1 and neutral[2]==1 and neutral[3]==1 and neutral[4]==1 and neutral[5]==1 and buy[6]==1)) plotshape(timetobuy, color=blue, location=location.belowbar, style=shape.arrowup) plotshape(timetosell, color=red, location=location.abovebar, style=shape.arrowdown) //plotshape(neutral, color=black, location=location.belowbar, style=shape.circle) //Test Strategy // strategy.entry("long", true, 1, when = timetobuy and time > timestamp(2017, 01, 01, 01, 01)) // buy by market if current open great then previous high // strategy.close("long", when = timetosell and time > timestamp(2017, 01, 01, 01, 01)) strategy.order("buy", true, 1, when=timetobuy==1 and time > timestamp(2019, 01, 01, 01, 01)) strategy.order("sell", false, 1, when=timetosell==1 and time > timestamp(2019, 01, 01, 01, 01)) // strategy.entry(id = "Short", long = false, when = enterShort()) // strategy.close(id = "Short", when = exitShort()) //strategy.entry("long", true, 1, when = open > high[1]) // enter long by market if current open great then previous high // strategy.exit("exit", "long", profit = 10, loss = 5) // ge