MOMENTUMDIV(values; period)
The 'values' argument must be an array.
The 'period' argument must be a constant greater or equal to 1.
The result is an array. The first 'period' elements are marked as invalid.
The Momentum Division function is similar to the Momentum indicator. It calculates the ratio between a current value and the value, which is 'period' days before the current value. The formula of the Momentum Division is:
MomentumDiv[n] = 100 * values[n] / values[n - period]
Windows Forms: All Examples\Data Manipulation\Functions\Financial\Technical Price Indicators