.netCHARTING v10.5 Documentation


A financial series where the first element contain the prices of last trading period, the second element represents the prices of the previous periods and so on. Please note that in order to calculate this indicator the elements of the financial series must contain High, Low and Close values.
TrueRange(Series) Method
True Range (TR) of a traded asset over a number of periods.
Syntax
'Declaration
 
Public Overloads Shared Function TrueRange( _
   ByVal s As Series _
) As Series
'Usage
 
Dim s As Series
Dim value As Series
 
value = FinancialEngine.TrueRange(s)
public static Series TrueRange( 
   Series s
)

Parameters

s
A financial series where the first element contain the prices of last trading period, the second element represents the prices of the previous periods and so on. Please note that in order to calculate this indicator the elements of the financial series must contain High, Low and Close values.

Return Value

An array where the k-term corresponds to the True Range (TR) on the k-th previous period.
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