Volatility Chaikin
Chaikin's Volatility indicator compares the spread between a security's high
and low prices. It quantifies volatility as a widening of the range between the
high and the low price.
There are two ways to interpret this measure of volatility. One method
assumes that market tops are generally accompanied by increased volatility (as
investors get nervous and indecisive) and that the latter stages of a market
bottom are generally accompanied by decreased volatility (as investors get
bored).
Another method (Mr. Chaikin's) assumes that an increase in the Volatility
indicator over a relatively short time period indicates that a bottom is near
(e.g., a panic sell-off) and that a decrease in volatility over a longer time
period indicates an approaching top (e.g., a mature bull market).
As with almost all experienced investors, Mr. Chaikin recommends that you do
not rely on any one indicator. He suggests using a moving average penetration or
trading band system to confirm this (or any) indicator.
Syntax:
Public Function VolatilityChaikin(ByVal HLOCV()() As Double, ByVal Lag As Long, ByVal LagROC As Long) As Double
Parameters:
- ByVal HLOCV()() As Double
- ByVal Lag As Long
- ByVal LagROC As Long
Back to list
Example:
Dim TA4Net As
New TA4Net.CTAFunctions("YOUR-REGISTRATION-CODE")
Dim Result() As
Double
Dim
HLOCV(,) As
Double
' loading values to array
HLOCV =
GetHLOCVValues()
' calculating Technical Analysis function
Result = TA4Net.VolatilityChaikin(HLOCV, 14, 14)
|