Cleverio - Quantower Indicators Help

Volume Delta (VD)

Description

The Volume Delta indicator provides insights into the volume difference between the current and previous volume bars.

How It Works

It calculates this difference by subtracting the volume at the current bar (denoted as volume[n]) from the volume at the previous bar (denoted as volume[n-1]). Essentially, it quantifies the change in trading volume over consecutive bars.

Formula

if (currentVolume > previousVolume) { return ((currentVolume - previousVolume) / currentVolume) * 100.0; } return ((currentVolume - previousVolume) / previousVolume) * 100.0;

Chart Settings

vd-settings-1.png
vd-settings-2.png

* For common indicator properties please see Common Indicator Settings

  1. "Volume Delta"

    1. "Volume Delta"

    2. "Volume Volatility Delta Color (Greater/Lower)"

Chart View

chart-vd-indicator.png
Last modified: 24 September 2024