Skip to content

Result Property

Summary

The Result Series of the Linear Regression Forecast Indicator

Signature

1
public abstract IndicatorDataSeries Result {get;}

Return Value

IndicatorDataSeries

Declaring Type

cAlgo.API.Indicators.LinearRegressionForecast

Examples

1
2
3
4
5
 public override void Calculate(int index)
 {
     // Print the current result of the Linear Regression Forecast to the log
     Print("Linear Regression Forecast at the current index is = {0}", _linearRegressionForecast.Result[index]);
 }

Last update: March 17, 2023