Summary
Gets or sets the time series of the Volume ROC indicator.
Syntax
public IndicatorDataSeries Result{ get; set; }
Example 1
//... private VolumeROC _volumeROC; //... protected override void OnBar() { var currentValue = _volumeROC.Result.LastValue; //... }