Table of Contents

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

period int

The 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)

Parameters

name string

The name of this indicator

period int

The period over which to perform to computation