Summary
Volume Rate of Change Indicator measures the rate of change of the tick volume.
Syntax
public VolumeROC VolumeROC(int periods)
public VolumeROC VolumeROC(Bars bars, int periods)
Parameters
Name | Description |
---|
Example 1
//... private VolumeROC _volumeROC; //... [Parameter("Period", DefaultValue = 21)] public int Period { get; set; } protected override void OnStart() { _volumeROC = Indicators.VolumeROC(Period); } protected override void OnBar() { var currentValue = _volumeROC.Result.LastValue; //... }