dotnetCHARTING Send comments on this topic.
MomentumPercent(SeriesCollection,Int32) Method
See Also 
dotnetCHARTING Namespace > FinancialEngine Class > MomentumPercent Method : MomentumPercent(SeriesCollection,Int32) Method


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.
We calculate the momentum pergentage over a given period.

Syntax

Visual Basic (Declaration) 
Public Overloads Shared Function MomentumPercent( _
   ByVal sc As SeriesCollection, _
   ByVal noOfDays As Integer _
) As SeriesCollection
Visual Basic (Usage)Copy Code
Dim sc As SeriesCollection
Dim noOfDays As Integer
Dim value As SeriesCollection
 
value = FinancialEngine.MomentumPercent(sc, noOfDays)
C# 
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
ArgumentExceptionThrown if the given series has strictly negative elements or if the noOfDays argument is greater then the length of prices array.

See Also

© 2010 All Rights Reserved.