Technical Indicators

The Technical Indicators category contains information on all of the indicators that are available in the WealthLab.Indicators standard indicators library.  Indicators are all DataSeries objects, and are created in scripts by using the Series method, as shown below:

DataSeries sma20 = SMA.Series(Close, 20);

Additionally, some indicators support a Value method that you can use to calculate and return the value of an indicator on a specific bar.  Value methods always recalculate their value each time they are called.

double smaValue = SMA.Value(bar, Close, 20);