MRPNL

Directional Movement Index (DMI)

DMI+DI−DI

System of +DI and −DI lines measuring upward and downward price movement; the gap between them, normalised as ADX, quantifies trend strength.

Card view

Formula

+DM = max(High − Prev High, 0) (if > |Low − Prev Low|);
−DM = max(Prev Low − Low, 0) (if > +DM);
+DI = 100 × Smoothed(+DM) / ATR;  −DI = 100 × Smoothed(−DM) / ATR

The DMI was developed by Welles Wilder as the directional component of his ADX system. +DI captures upward directional movement (today's high − yesterday's high, when positive) and −DI captures downward movement, both smoothed over 14 periods.

When +DI crosses above −DI, a bullish signal is generated; when −DI crosses above +DI, a bearish signal fires. The crossovers on their own can be noisy — pairing them with ADX above 25 filters out false signals in choppy markets. The width of the gap between +DI and −DI indicates how decisively one direction dominates.

#trend

Related Terms