Result Property
Summary
The Result Series of the Linear Regression Intercept Indicator
Signature
| public abstract IndicatorDataSeries Result {get;}
|
Return Value
IndicatorDataSeries
Declaring Type
cAlgo.API.Indicators.LinearRegressionIntercept
Examples
| public override void Calculate(int index)
{
// Result of _linearRegressionIntercept at the current index
double result = _linearRegressionIntercept.Result[index];
// Print the current result to the log
Print("Linear Regression Intercept at the current index is = {0}", result);
}
|
Last update: February 6, 2023