Skip to content

Result Property

Summary

Gets the time series of Trade Volume Index indicator.

Signature

1
public abstract IndicatorDataSeries Result {get; set;}

Return Value

IndicatorDataSeries

Declaring Type

cAlgo.API.Indicators.TradeVolumeIndex

Examples

1
2
3
4
5
6
7
8
 //...
 private TradeVolumeIndex _tradeVolume;
 //...
 protected override void OnBar()
 {
     var currentValue = _tradeVolume.Result.LastValue;
     //...
 }

Last update: March 23, 2023