Xceed Chart for WinForms v4.4 Documentation
Average Directional Movement
Welcome to Xceed Chart for WinForms v4.4 > User Guide > Data Manipulation > Functions > Average Directional Movement

Syntax

The Average Directional Movement is implemented as a composite function. It uses the Directional Movement Index function and the Modified Moving Average. The expression is:

MMA(DMI(close; high; low))

Arguments

The result of the DMI function is used as an argument for the MMA function. The arguments of the DMI are described in the "Directional Movement Index" topic.

Result

The result is an array.

Description

The Average Directional Movement is a part of the Directional Movement System developed by J. Welles Wilder. The system consists of three lines: 

Declining Average Directional Movement shows that the market is losing direction. When Average Directional Movement falls below both +DI and -DI, it signals a lifeless market. When Average Directional Movement rises above both +DI and -DI, it signals that the market is becoming overheated. The Average Directional Movement is defined as a moving average of the Directional Movement Index. By default, the Modified Moving Average is used for smoothing with a period of 14 days. You can use another type of moving average by changing the original formula. For more information about the DMI and the MMA functions, see the "Directional Movement Index" and the "Modified Moving Average" topics.
 

Related Examples

Windows Forms: Examples\Chart\VB\PresentationGroups\Function\Functions1