Announcement

Collapse
No announcement yet.

PVT price volume trend

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • PVT price volume trend

    Hi,

    I am looking for PVT EFS study, I did a search but could find this study. Thank you

  • #2
    PVT takes a moving average right? Just did a search of the Metastock code but the result is like OBV right? Something I've found usefull is MoVo ,using price X volume and making a trend histogram.
    Attached Files

    Comment


    • #3
      Nana Trader
      Enclosed below is the code for the PVT.
      Alex




      PHP Code:
      function preMain(){

          
      setPriceStudy(false);
          
      setStudyTitle("PVT");
          
      setCursorLabelName("PVT");

      }

      var 
      vPVT null
      var vPVT1 null;

      function 
      main(){

          if(
      getBarState()==BARSTATE_NEWBAR){
              
      vPVT1=vPVT;
          }

          
      vPVT = (((close(0)-close(-1))/close(-1))*volume(0))+vPVT1;

          return 
      vPVT;

      Comment


      • #4
        How to plote this indicator on the candle price chart,
        like overlaying it , not below the chart ?
        Thank you

        Comment


        • #5
          Nana Trader
          Click and drag the indicator window on to the price window while keeping the <Shift> key pressed.
          Alex

          Comment

          Working...
          X