Volume Oscillator (VOSC)


Namespace: OpenQuant.API.Indicators
Assembly: OpenQuant.API (in OpenQuant.API.dll)

Syntax

Visual Basic (Declaration)
Public Class VOSC
    Inherits Indicator
C#
public class VOSC : Indicator
C++
ref class VOSC : Indicator
J#
public class VOSC extends Indicator
JScript
public class VOSC extends Indicator

Remarks

The Volume Oscillator displays the difference between two moving averages of a security's volume . The difference between the moving averages can be expressed in either points or percentages.

You can use the difference between two moving averages of volume to determine if the overall volume trend is increasing or decreasing. When the Volume Oscillator rises above zero, it signifies that the shorter-term volume moving average has risen above the longer-term volume moving average, and thus, that the short-term volume trend is higher (i.e., more volume) than the longer-term volume trend.
There are many ways to interpret changes in volume trends. One common belief is that rising prices coupled with increased volume, and falling prices coupled with decreased volume, is bullish. Conversely, if volume increases when prices fall, and volume decreases when prices rise, the market is showing signs of underlying weakness.
The theory behind this is straight forward. Rising prices coupled with increased volume signifies increased upside participation (more buyers) that should lead to a continued move. Conversely, falling prices coupled with increased volume (more sellers) signifies decreased upside participation.

This indicator is described in more details in the Steve Achelis' book "Technical Analysis from A to Z".

Formula:

Inheritance Hierarchy

System.Object
   OpenQuant.API.Indicator
      OpenQuant.API.Indicators.VOSC

Thread Safety

Public static (Shared in Visual Basic)staticShared members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

See Also