Class MomentumPercent
- Namespace
- FinanceSharp.Indicators
- Assembly
- FinanceSharp.dll
This indicator computes the n-period percentage rate of change in a value using the following: 100 * (value_0 - value_n) / value_n
This indicator yields the same results of RateOfChangePercent
public class MomentumPercent : RateOfChangePercent, IIndicator, IUpdatable
- Inheritance
-
MomentumPercent
- Implements
- Inherited Members
- Extension Methods
Constructors
MomentumPercent(int)
Creates a new MomentumPercent indicator with the specified period
public MomentumPercent(int period)
Parameters
periodintThe period over which to perform to computation
MomentumPercent(string, int)
Creates a new MomentumPercent indicator with the specified period
public MomentumPercent(string name, int period)