Charts

Charts

Directional Movement Index (DMI)

The Directional Movement Indicators (DMI) are components of the Directional Movement system published by J. Welles Wilder, and are computed with the Average Directional Movement Index (ADX). Two indicators are plotted, a Positive DI ( +DI ) and a Negative DI ( -DI ).

Configuration Options

  • Period: Number of bars to use in the calculations.
  • Color Selectors: Colors to use for graph elements.
  • Display Axis Label: Whether to display the most recent value on the Y axis.

Formula

Directional Movement (DM) is defined as the largest part of the current period's price range that lies outside the previous period's price range. For each period calculate:

\[+DM = High - Previous\;High\]

\[-DM = Previous\;Low - Low\]

The smaller of the two values is set to zero, i.e., if +DM > -DM, then -DM = 0. On an inside bar (a lower high and higher low), both +DM and -DM are negative values, so both get reset to zero as there was no directional movement for that period.

The True Range (TR) is calculated for each period, where:

\[TR = max(High_{t} - Close_{t-1}\;,\;Close_{t-1} - Low_{t}\;,\;High_{t} - Low_{t})\]

The \(+DM_{n}, -DM_{n}\) and \(TR_{n}\) are averaged over a usered defined n-periods. The intial calculation uses a pure moving average, with the remain calculations use an accumulation technique which produces a smoothed line, similar to an exponential smoothing:

\[\bullet\; +DM_{n-periods} = +DM_{n-1} - \left ( \frac{+DM_{n-1}}{n} \right ) +( +DM_{n})\]

\[\bullet\; -DM_{n-periods} = -DM_{n-1} - \left ( \frac{-DM_{n-1}}{n} \right ) +( -DM_{n})\]

\[\bullet\; ATR_{n-periods} = ATR_{n-1} - \left ( \frac{ATR_{n-1}}{n} \right ) +( TR_{n})\]

Compute the positive/negative Directional Indexes, +DI and -DI, as a percentage of the True Range:

\[\bullet\; +DI = \left ( \frac{+DM}{TR} \right ) \times 100\]

\[\bullet\; -DI = \left ( \frac{-DM}{TR} \right ) \times 100\]

The next step is to calculate DX, where:

\[\bullet\; DI_{diff} = \left |\; ((+DI) - (-DI))\; \right| \]

\[\bullet\; DI_{sum} = ((+DI) + (-DI)) \]

\[\bullet\; DX = \left( \frac{DI_{dif}}{DI_{sum}}\right) \times 100\]

The DX is always a value between 0 and 100. The accumulated moving average technique is used to smooth the DX. The result is the ADX or average directional movement index.

\[ADX_{n} = +ADX_{n-1} - \left ( \frac{ADX_{n-1}}{n} \right )+(DX_{n})\]