NVI as Array

NVI returns an array containing the Negative Volume Index.

 

Example:

'NVI MA

'You can change the period to your needed settings

'The positive volume index and negative volume index are both built-in

'indicators in Wall Street Analyzer.

' To compute a moving average for the negative volume index, just replace

'"positive volume index" with "negative volume index."

Sub Main()

Period = 125

SetIndic(SMA(GetIndic("Positive Volume Index"), Period))

End Sub