Summary
The Result Series of the Linear Regression Intercept Indicator
Syntax
public IndicatorDataSeries Result{ get; }
Example 1
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); }