Skip to content

Result Property

Summary

Gets the Result Series of the Swing Index indicator.

Signature

1
public abstract IndicatorDataSeries Result {get;}

Return Value

IndicatorDataSeries

Declaring Type

cAlgo.API.Indicators.SwingIndex

Examples

1
2
3
4
5
 public override void Calculate(int index)
 {
      //Print the current value of SwingIndex to the log
      Print("The current value of SwingIndex is {0}", _swingIndex.Result[index]);
 }

Last update: March 30, 2023