| Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL. |
![]() | | Tweet | |
PRV -- Pro Rated Volume Details »» | |||||||||||||||||||||||||||
PRV -- Pro Rated Volume For the volume hawks! This indicator projects the volume at the end of the bar. It calculates the PRV based on the current trade pace, and the time remaining in the bar. This information is useful to spot turning points ie. whether the money is drying up... or flooding in. This indicator is usable on minute charts only. Instructions: Set the volume to display as a thick histogram and the PRV to display either as a thin histogram, or as a thick point. Download Now
Screenshots Show Your Support
| |||||||||||||||||||||||||||
| ∧ Similar Indicator | ||||
| Mod | Developer | Type | Replies | Last Post |
| Up/Down Volume Indicator | Blu-Ray | Trading Indicators | 6 | 05:10 PM 12-12-2010 |
| Volume Delta Indicator | Soultrader | Trading Indicators | 29 | 01:08 AM 05-22-2009 |
| Volume Weighed Color Bars | Tams | Trading Indicators | 14 | 09:35 AM 07-03-2009 |
| Shifted | Tams | Trading Indicators | 10 | 07:20 AM 06-20-2009 |
| Price Action Trainer | Tams | Trading Indicators | 21 | 10:33 AM 01-26-2012 |
| The Following 6 Users Say Thank You to Tams For This Useful Post: | ||
aaa (04-25-2009), devtrend (12-28-2009), eford1 (08-18-2010), moneymarkets (04-22-2009), TIKITRADER (12-14-2009), vienna (02-14-2011) | ||
| Comments |
| | #2 | ||
![]() | Re: PRV -- Pro Rated Volume Paul Quote:
| ||
| |
|
| | #3 | ||
![]() | Re: PRV -- Pro Rated Volume The indicator needs to find out the Current Time In Seconds, the currenttime keyword can only supply the time in minutes. Quote:
Quote:
Last edited by Tams; 04-23-2009 at 11:54 AM. | ||
| |
|
| The Following User Says Thank You to Tams For This Useful Post: | ||
Trader333 (04-23-2009) | ||
| | #4 | ||
![]() | Re: PRV -- Pro Rated Volume I encourage you to post your enhanced code.
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| | #5 | ||
![]() | Re: PRV -- Pro Rated Volume // PRV Pro Rated Volume // author: unknown (previousely posted by TXUK) // enhancements by TAMS // // This indicator projects the volume at the end of the bar. // It calculates the PRV based on the current trade pace, // and the time remaining in the bar. // // This information is useful to spot turning points // ie. whether the money is drying up... or flooding in. // // This indicator is usable on minute charts only. // // Instructions: // Set the volume to display as a thick histogram // and the PRV to display either as a thin histogram, or as a thick point.// // // enhancemnts by TAMS: // 20070102 // added user configurable colors // auto detect chart resolution (original version can only be used on 5min chart) // added delay, so that the PRV does not get overwhelmed at the beginning of the bar // added the zero line, so that autoscale starts at zero instead of the lowest volume // inputs: UpCol( black ), DnCol( Red ), UpPRV(green), DnPRV(Darkcyan), delay(10); variables: offset(0), color(0); vars: CurrentTimeInSecs ( 0 ), TotSecondsDiff( 0 ) , SecondsDiff( 0 ) , MinutesDiff( 0 ), prv(0); plot1(0, "Zero"); if date = date[1] then begin CurrentTimeInSecs = ( Currenttime - DateToJulian( Date ) ) * 86400 ; TotSecondsDiff = CurrentTimeInSecs - CurrentTimeInSecs[1] ; end; If TotSecondsDiff > delay then begin prv = (ticks/TotSecondsDiff) * 60 * barinterval ; IF prv > ticks[1] THEN setPlotColor( 2, UpPRV) else SetPlotColor(2, dnPRV); Plot2 (prv, "PRV"); end; if c > c[1] then color = upcol else if c < c[1] then color = dncol else color = color[1]; Plot2[1] (ticks[1], "PRV"); plot3(ticks, "Volume", color); | ||
| |
|
| | #6 | ||
![]() | Re: PRV -- Pro Rated Volume code tag is the at the top of the reply message window frame.Code: tagged code looks like this code code code
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| | #7 | ||
![]() | Re: PRV -- Pro Rated Volume Quote:
__________________ Only an idiot would reply to a stupid post | ||
| |
|
| | #8 | ||
![]() | Re: PRV -- Pro Rated Volume <> | ||
| |
|
![]() |
| Tags |
| price volume relationship, prv, time, volume |
| Thread Tools | |
| Help Others By Rating This Thread | |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Retest on Lower Volume with Volume Gradient | walterw | Technical Analysis | 3 | 04-16-2009 12:10 AM |
| NYSE Up Volume($UVOL)/Down Volume ($DVOL) Comparison | MC | Market Internals | 23 | 02-09-2009 09:18 AM |