QuantStudio Financial Data Analysis and Trading Framework

TL Class

True Low (TL)

For a list of all members of this type, see TL Members.

System.Object
   RQuant.Indicator.TTimeArray
      RQuant.Indicator.TDoubleArray
         RQuant.Indicator.TIndicator
            RQuant.Indicator.TL

[Visual Basic]
Public Class TL
    Inherits TIndicator
[C#]
public class TL : TIndicator

Thread Safety

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

Remarks

The value the TrueLow function returns is either the Low of the current bar or the Close of the previous bar if its value is lower.

Formula:

Example

TDataManager.cd("Demo");

TDailyArray Daily1 = TDataManager.GetStock("YHOO").DailyArray;

DateTime Date1 = DateTime.Parse("1999/02/08"); 
DateTime Date2 = DateTime.Parse("2000/12/29"); 

TDailyArray Daily = Daily1.Clone(Date1, Date2);

TCanvas Canvas = new TCanvas("Canvas","TL DEMO",600,400);
    
Canvas.Divide(1,2);

TL TL = new TL(Daily);

Canvas.cd(1);
Daily.Draw("c");

Canvas.cd(2);
TL.Draw(Color.Red);

Requirements

Namespace: RQuant.Indicator

Assembly: RQuant.Indicator (in RQuant.Indicator.dll)

See Also

TL Members | RQuant.Indicator Namespace