True High (TH)


Namespace: OpenQuant.API.Indicators
Assembly: OpenQuant.API (in OpenQuant.API.dll)

Syntax

Visual Basic (Declaration)
Public Class TH
    Inherits Indicator
C#
public class TH : Indicator
C++
ref class TH : Indicator
J#
public class TH extends Indicator
JScript
public class TH extends Indicator

Remarks

The value the TrueHigh function returns is either the High of the current bar or the Close of the previous bar if its value is higher. The TrueHigh is most commonly used in finding Gap Open bars. A Gap Open bar is when the Open is greater than the previous bars High.

Formula:

Inheritance Hierarchy

System.Object
   OpenQuant.API.Indicator
      OpenQuant.API.Indicators.TH

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also