NexusFi: Find Your Edge


Home Menu

 





Searching for a PVP (Peak of Volume at Price) indicator for Multichart


Discussion in MultiCharts

Updated
    1. trending_up 1,897 views
    2. thumb_up 4 thanks given
    3. group 3 followers
    1. forum 6 posts
    2. attach_file 0 attachments




 
Search this Thread

Searching for a PVP (Peak of Volume at Price) indicator for Multichart

  #1 (permalink)
Dvdkite
Trieste Italy
 
Posts: 162 since Feb 2018
Thanks Given: 131
Thanks Received: 25

Hello everyone,

as in the title I'm searching for a PVP (Peak of Volume at Price) indicator for Multichart. I really browsed a lot of links but I cannot find anything. So strange but surprisingly I cannot find anything around. Do you have any suggestion or link to provide?

I'm looking for something like this that plot the PVP in real time during the day as a simple line. As you can see it's easier and natural that it changes a lot in the first hours of the market where volumes are low and it gets stable as the session proceeed.

example found on the web (PVP is the blue dotted line):



Any help is appreciated,

Thanks

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
Better Renko Gaps
The Elite Circle
MC PL editor upgrade
MultiCharts
REcommedations for programming help
Sierra Chart
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Just another trading journal: PA, Wyckoff & Trends
34 thanks
Tao te Trade: way of the WLD
24 thanks
GFIs1 1 DAX trade per day journal
16 thanks
My NQ Trading Journal
14 thanks
Vinny E-Mini & Algobox Review TRADE ROOM
13 thanks
  #2 (permalink)
Dvdkite
Trieste Italy
 
Posts: 162 since Feb 2018
Thanks Given: 131
Thanks Received: 25

I just realized that the PVP should be the same as the Volume Point of Control .....

Reply With Quote
  #3 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627


Dvdkite,

in that case you could for example use the build in Volume Profile and have it display the "Developing POC".

Regards,

ABCTG


Dvdkite View Post
I just realized that the PVP should be the same as the Volume Point of Control .....


Follow me on Twitter Reply With Quote
Thanked by:
  #4 (permalink)
Dvdkite
Trieste Italy
 
Posts: 162 since Feb 2018
Thanks Given: 131
Thanks Received: 25


ABCTG View Post
Dvdkite,

in that case you could for example use the build in Volume Profile and have it display the "Developing POC".

Regards,

ABCTG

Hello ABCTG,

thanks for your answer. So it should be the oDevelopingVolPOC from your ValueArealPlots function if I'm correct.
I was succesfully able to use your indicator (and I'm using it over a 5 min bar chart very often ) but I'm trying to apply it now over the EuroSTOXX 50 future with a 1000 contract bar chart... and it always give me and " Array Bounds.Wron Index value: -250". It happened in the past and I solved typing 1500 for the array.. but now it is not working... even putting 10000 ...

I was simply trying to plot the oDevelopingVolPOC to see it is what I'm looking for, is there any limit for the function over "contract" based chart?

thanks again,

David

Reply With Quote
  #5 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

Hello David,

this can be caused by two things. Either the chart you are applying the indicator spans over more price ticks from the high to the low than what you allowed with the array size - in which case the array size needs to be higher.
The other cause could be wrong symbol settings in Quotemanager for that symbol resulting in wrong tick values which in turn might require too large arrays - in this case correcting the symbol settings would be the way to go.

It is a good practice in Multicharts to check the symbol settings after adding new symbols into Quotemanager, as they are not necessarily correct by default.

Regards,

ABCTG


Dvdkite View Post
Hello ABCTG,

thanks for your answer. So it should be the oDevelopingVolPOC from your ValueArealPlots function if I'm correct.
I was succesfully able to use your indicator (and I'm using it over a 5 min bar chart very often ) but I'm trying to apply it now over the EuroSTOXX 50 future with a 1000 contract bar chart... and it always give me and " Array Bounds.Wron Index value: -250". It happened in the past and I solved typing 1500 for the array.. but now it is not working... even putting 10000 ...

I was simply trying to plot the oDevelopingVolPOC to see it is what I'm looking for, is there any limit for the function over "contract" based chart?

thanks again,

David


Follow me on Twitter Reply With Quote
Thanked by:
  #6 (permalink)
Dvdkite
Trieste Italy
 
Posts: 162 since Feb 2018
Thanks Given: 131
Thanks Received: 25


ABCTG View Post
Hello David,

The other cause could be wrong symbol settings in Quotemanager for that symbol resulting in wrong tick values which in turn might require too large arrays - in this case correcting the symbol settings would be the way to go.

Hello ABCTG,

as always thank you for you fast reply. I didn't set up the symbol mapping on the eurostoxx simply because it was almost the first time I' was studying it!
Now I changed the symbol mapping with the correct values and the indicator is working fine with not error.

I applied it over a 1000 contract bar chart over the EUSTOSTOXX 50, is that ok to use it to plot the oDevelopingVolPOC with this bar configuration? (I'm just asking bacause I remember you said that to calculate the price value area it was the best to apply the indicator over a 1 or 2 minute bar chart, but I think that with volume things are different and I just want to be sure to trust the oDevelopingVolPOC even on 1000 contract bar chart).

Thanks and Regards,

David

Reply With Quote
  #7 (permalink)
 ABCTG   is a Vendor
 
Posts: 2,433 since Apr 2013
Thanks Given: 481
Thanks Received: 1,627

David,

Multicharts doesn't provide access to the volume at each price in PowerLanguage. Therefore the code splits the bar volume across the bar range evenly. Having said this the results are therefore more accurate the smaller the bar ranges are and that's why I would suggest using 1 minute bars. Using contract bars can work, too, but I would also make sure to use increments that don't create too wide bars as this might impact the accuracy.

Regards,

ABCTG


Dvdkite View Post
Hello ABCTG,

as always thank you for you fast reply. I didn't set up the symbol mapping on the eurostoxx simply because it was almost the first time I' was studying it!
Now I changed the symbol mapping with the correct values and the indicator is working fine with not error.

I applied it over a 1000 contract bar chart over the EUSTOSTOXX 50, is that ok to use it to plot the oDevelopingVolPOC with this bar configuration? (I'm just asking bacause I remember you said that to calculate the price value area it was the best to apply the indicator over a 1 or 2 minute bar chart, but I think that with volume things are different and I just want to be sure to trust the oDevelopingVolPOC even on 1000 contract bar chart).

Thanks and Regards,

David


Follow me on Twitter Reply With Quote
Thanked by:




Last Updated on September 24, 2018


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts