Skip to content

Result Property

Summary

Gets the resulting series of the calculation of the Mass Index indicator.

Signature

1
public abstract IndicatorDataSeries Result {get;}

Return Value

IndicatorDataSeries

Declaring Type

cAlgo.API.Indicators.MassIndex

Examples

1
2
3
4
 public override void Calculate(int index)
 {
     double massIndex = _massIndex.Result[index];
 }

Last update: March 23, 2023