Welcome to the Traders Laboratory Forums.
Trading Indicators Post your custom trading indicators. If you download, remember to click INSTALL.

Like Tree4Likes

Reply
PRV -- Pro Rated Volume Details »»
PRV -- Pro Rated Volume
Platform: EasyLanguage, by Tams Tams is offline
Developer Last Online: May 2012 Show Printable Version Email this Page

Platform: MultiCharts Rating: (2 votes - 5.00 average)
Released: 04-22-2009 Last Update: Never Installs: 12
 
No support by the author.

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

File Type: txt PRV_ProRatedVolume.txt (1.7 KB, 241 views)

Screenshots

PRV -- Pro Rated Volume-prv_pro_rated_volume.jpg  

Show Your Support

  • If you like to thanks you by the author -> Click Thanks to the Author
  • This modification may not be copied, reproduced or published elsewhere without the author's permission.

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
Old 02-07-2012, 07:23 AM   #18

Join Date: May 2010
Posts: 181
Ignore this user

Thanks: 0
Thanked 49 Times in 38 Posts

Re: PRV -- Pro Rated Volume

You're welcome. I agree it's a great indicator. Thank you Tams ....TXUK's ......and any other's involved that I've missed.

I'm curious what you changed???

Quote:
Originally Posted by danhoyda »
pardon me I got it to work thanks for the help I changed something on the original code and thats why it didnt work. I changed it back and now it is.

Thanks.

Love the indicator.
onesmith is offline  
Reply With Quote
The Following User Says Thank You to onesmith For This Useful Post:
Tams (02-07-2012)
Old 02-07-2012, 08:15 AM   #19

Join Date: Jan 2012
Posts: 29
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: PRV -- Pro Rated Volume

that computer date time thing is what I changed it back to.

Dan


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 = ( ComputerDateTime - 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);
danhoyda is offline  
Reply With Quote
Old 02-08-2012, 11:31 PM   #20

Join Date: Jan 2012
Posts: 29
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: PRV -- Pro Rated Volume

I LOVE this indicator. Thank you very much for this. Could someone explain to clearly what exactly it is doing. My code understanding is very limited. Any help would be appreciated.

Thanks!

Dan
danhoyda is offline  
Reply With Quote
Old 02-09-2012, 09:29 AM   #21

Join Date: May 2010
Posts: 181
Ignore this user

Thanks: 0
Thanked 49 Times in 38 Posts

Re: PRV -- Pro Rated Volume

PRV estimates total volume (of a completed bar), while the volume is still incomplete and developing.

The version in this thread extrapolates the rate of developing volume (i.e. it pro-rates the volume) based on the assumption it will remain steady until the bar completes. This is a beginning point from which to begin searching for formulas that can distinguish viable signals. I have extensively developed skills for cataloging data such as this and performing any analysis imaginable. Just so you know in case anyone has an idea worth exploring and needs help implementing it. I don't have anything forsale and never will. I abhor that category of failed traders who fleece sheep to cover their trading losses.

Quote:
Originally Posted by danhoyda »
I LOVE this indicator. Thank you very much for this. Could someone explain to clearly what exactly it is doing. My code understanding is very limited. Any help would be appreciated.

Thanks!

Dan
ValueTrader and BlueHorseshoe like this.
onesmith is offline  
Reply With Quote
Old 02-09-2012, 09:38 AM   #22

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,477 Times in 912 Posts

Re: PRV -- Pro Rated Volume

this code by TXUK is a good platform for further development...

I would welcome all users to share their enhancements.

Sharing is good.... that's how we grow.
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
Old 02-09-2012, 09:50 AM   #23

Join Date: Jan 2012
Posts: 29
Ignore this user

Thanks: 0
Thanked 0 Times in 0 Posts

Re: PRV -- Pro Rated Volume

thanks onesmith. I have been interested in the murray math indicator do you know anything about it?
danhoyda is offline  
Reply With Quote
Old 02-09-2012, 09:52 AM   #24

Tams's Avatar

Join Date: Sep 2008
Location: Geelong
Posts: 3,779
Ignore this user

Thanks: 2,084
Thanked 1,477 Times in 912 Posts

Re: PRV -- Pro Rated Volume

Quote:
Originally Posted by danhoyda »
thanks onesmith. I have been interested in the murray math indicator do you know anything about it?
please start a new thread if you would like to change the subject
__________________



Only an idiot would reply to a stupid post
Tams is offline  
Reply With Quote
Old 02-25-2012, 08:12 AM   #25

Join Date: Jan 2012
Posts: 365
Ignore this user

Thanks: 51
Thanked 73 Times in 56 Posts

Re: PRV -- Pro Rated Volume

Quote:
Originally Posted by onesmith »
I abhor that category of failed traders who fleece sheep to cover their trading losses.
Ha! And then there's that category who fleece sheep but don't have any trading losses to cover because they don't actually trade . . .

OneSmith has provided me with valuable coding assistance recently and didn't attempt to sell me anything, so I'll happily second his statement above and recommend seeking help from him with coding.
BlueHorseshoe is offline  
Reply With Quote

Reply

Tags
price volume relationship, prv, time, volume

Thread Tools
Help Others By Rating This Thread
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

All times are GMT -4. The time now is 10:55 PM.
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
CS to VB integration by DeskLancer
©2006-2011 Traders Laboratory, All Rights Reserved.