এই কৌশলটি প্রযুক্তিগত সূচক
এই কৌশলটি মূল্যের প্রবণতা এবং ব্রেকআউট পয়েন্টগুলি নির্ধারণের জন্য মোমেন্টাম মিডিয়ান ডিভিয়েশন সূচক ব্যবহার করে। এটি প্রথমে দামের ইএমএ লাইন গণনা করে, তারপরে এই ইএমএ লাইন থেকে দামের বিচ্যুতি গণনা করে। এই বিচ্যুতিটি তারপরে চূড়ান্ত মোমেন্টাম মিডিয়ান ডিভিয়েশন সূচক বক্ররেখা পেতে ইএমএ দ্বারা দ্বিগুণ মসৃণ করা হয়। এই বক্ররেখাটি যখন নিজের সংকেত লাইনের উপরে বা নীচে অতিক্রম করে তখন ট্রেডিং সংকেত উত্পন্ন হয়। বিশেষত, গণনা প্রক্রিয়াটি নিম্নরূপঃ
পোসিগ সিগন্যাল অনুযায়ী লং বা শর্ট পজিশন প্রবেশ করান।
এই কৌশলটির সুবিধাগুলির মধ্যে রয়েছেঃ
এই কৌশলটির কিছু সম্ভাব্য ঝুঁকিও রয়েছেঃ
এই ঝুঁকিগুলি প্যারামিটারগুলি অপ্টিমাইজ করে, ফিল্টারিংয়ের মানদণ্ড নির্ধারণ করে, প্রবণতা মূল্যায়ন মডিউলগুলি প্রবর্তন করে ইত্যাদি হ্রাস করা যেতে পারে।
এই কৌশলটির জন্য অপ্টিমাইজেশান দিকগুলির মধ্যে রয়েছেঃ
এই কৌশলটি গতির গড় বিচ্যুতি সূচকের উপর ভিত্তি করে যা মূল্য-গতি সম্পর্ক ভিত্তিক মূল্য বিপরীত পয়েন্টগুলি ক্যাপচার করে। এর প্যারামিটারাইজড এবং অপ্টিমাইজযোগ্য নকশা বিভিন্ন চক্র এবং জাতের সাথে খাপ খাইয়ে নিতে পারে। তবে এতে কিছু মিথ্যা সংকেত এবং বিপরীত ট্রেডিং ঝুঁকিও রয়েছে। আরও প্যারামিটার এবং মডেলগুলি অনুকূলিতকরণ এবং প্রবণতা বিচার ইত্যাদি অন্তর্ভুক্ত করা এর কর্মক্ষমতা উন্নত করতে পারে।
/*backtest start: 2023-12-17 00:00:00 end: 2024-01-16 00:00:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version = 2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 12/12/2016 // This is one of the techniques described by William Blau in his book "Momentum, // Direction and Divergence" (1995). If you like to learn more, we advise you to // read this book. His book focuses on three key aspects of trading: momentum, // direction and divergence. Blau, who was an electrical engineer before becoming // a trader, thoroughly examines the relationship between price and momentum in // step-by-step examples. From this grounding, he then looks at the deficiencies // in other oscillators and introduces some innovative techniques, including a // fresh twist on Stochastics. On directional issues, he analyzes the intricacies // of ADX and offers a unique approach to help define trending and non-trending periods. // // You can change long to short in the Input Settings // Please, use it only for learning or paper trading. Do not for real trading. //////////////////////////////////////////////////////////// strategy(title="Ergotic MDI (Mean Deviation Indicator) Bactest") r = input(32, minval=1) s = input(5, minval=1) u = input(5, minval=1) SmthLen = input(3, minval=1) reverse = input(false, title="Trade reverse") hline(0, color=blue, linestyle=line) xEMA = ema(close, r) xEMA_S = close - xEMA xEMA_U = ema(ema(xEMA_S, s), u) xSignal = ema(xEMA_U, u) pos = iff(xEMA_U > xSignal, 1, iff(xEMA_U < xSignal, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(xEMA_U, color=green, title="Ergotic MDI") plot(xSignal, color=red, title="SigLin")