Understanding the MCDx Indicator for MetaTrader 4: A Trader's Guide

Mike 2022.08.06 19:45 19 0 0
Attachments

MCDx Indicator Screenshot

Hey traders! If you're familiar with the MCDx Smart Money indicator, I've got some news for you. It's time to clear the air—this isn’t about bankers, smart money, or retail traders. At the end of the day, it’s all about the RSI.

How to Utilize the MCDx Indicator

Let’s break it down step by step:

  1. Get the RSI Value: First, you’ll want to retrieve the RSI value using the following code:
  2. iRSI(NULL, 0, period, PRICE_CLOSE, pos)
  3. Calculate the Difference: Next, subtract your base value from the RSI value you just calculated:
  4. (iRSI(NULL, 0, period, PRICE_CLOSE, pos)-base)
  5. Apply Sensitivity: Now, multiply the result from the previous step by your sensitivity factor:
  6. sensitivity * (iRSI(NULL, 0, period, PRICE_CLOSE, pos)-base)
  7. Clamp the Value: Finally, you’ll want to ensure that the value stays within a range of 0 to 20. If the value exceeds 20, cap it at 20. If it drops below 0, set it to 0:
  8. if (rsi > 20) { rsi = 20; }
    if (rsi < 0) { rsi = 0; }

And there you have it! The MCDx indicator, stripped down to its essence. It’s a straightforward tool that can provide valuable insights when used correctly. Happy trading!

List
Comments 0