.netCHARTING v10.5 Documentation


dotnetCHARTING Namespace > FinancialEngine Class > MomentumPercent Method : MomentumPercent(SeriesCollection,Int32) Method
A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two series.
The number of days before to which the closing price is compared.
MomentumPercent(SeriesCollection,Int32) Method
We calculate the momentum pergentage over a given period.
Syntax
'Declaration
 
Public Overloads Shared Function MomentumPercent( _
   ByVal sc As SeriesCollection, _
   ByVal noOfDays As Integer _
) As SeriesCollection
'Usage
 
Dim sc As SeriesCollection
Dim noOfDays As Integer
Dim value As SeriesCollection
 
value = FinancialEngine.MomentumPercent(sc, noOfDays)
public static SeriesCollection MomentumPercent( 
   SeriesCollection sc,
   int noOfDays
)

Parameters

sc
A collection of series objects. For example, to evaluate this indicator for two series you will need to pass a series collection containing this two series.
noOfDays
The number of days before to which the closing price is compared.
Exceptions
ExceptionDescription
Thrown if the given series has strictly negative elements or if the noOfDays argument is greater then the length of prices array.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also