Summary
The time series of the Negative Volume Index indicator.
Syntax
public IndicatorDataSeries Result{ get; set; }
Example 1
private NegativeVolumeIndex _negativeVolume; [Parameter] public DataSeries Source { get; set; } protected override void OnStart() { _negativeVolume = Indicators.NegativeVolumeIndex(Source); } protected override void OnBar() { var currentValue = _negativeVolume.Result.LastValue; //... }