Nevron .NET Vision
Chart for .NET / User's Guide / Data Manipulation / Functions / Financial Functions / Volume Indicators / Price Volume Trend

In This Topic
    Price Volume Trend
    In This Topic
     Syntax
    PVT(close; volume; 0)
     Arguments

    The first two arguments must be arrays: 'close' contains the close values, 'volume' contains the volumes.

    The last parameter must be 0.

     Result
    The result is an array.
     Description

    The Price and Volume Trend is a cumulative total of volume that is adjusted depending on changes in closing prices. It is similar to On Balance Volume, and the only difference between the two indicators is that OBV adds all volume on days when prices close higher and subtracts all volume on days when prices close lower, while the PVT adds/subtracts only a portion of the daily volume. The amount of volume added to the PVT is determined by the amount that prices rose or fell relative to the previous day's close.

    The Price and Volume Trend is used to determine the strength of trends and warn of reversals. It should not be used on its own but in conjunction with other indicators.

     Related Examples
    Windows Forms: All Examples\Data Manipulation\Functions\Financial\Technical Price Indicators