Visual Basic (Declaration) | |
---|---|
Public Overloads Shared Function OnBalanceVolume( _ ByVal seriesName As String, _ ByVal s As Series _ ) As Series |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public static Series OnBalanceVolume( string seriesName, Series s ) |
Parameters
- seriesName
- The name of the series which will be displayed on the chart, i.e. its label.
- s
- An series where the first element is the closing price in the last trading period, the second term is the closing price in the previous trading period and so on.
Indicator Formula
The formula for this indicator is:
If today's close is greater than yesterday's close then:
OBV = Yesterday's OBV + Today's Volume
If today's close is less than yesterday's close then:
OBV = Yesterday's OBV - Today's Volume
If today's close is equal to yesterday's close then:
OBV = Yesterday's OBV