I there a way to plot the actual numbers from the Bid/Ask from PVP or another indicator as a number that shows up over the bar or to the side of the prices? I realize there are a lot of things that can be plotted from volume scope or built as an indicator to show up at the bottom of the chart, but it would be nice to plot the actual numerical information from PVP to the chart. For instance, an example, if I wanted to divide the Ask of the High of a bar divided by the Ask Price of the price just below it on the screen, how would I do it? If there is another way to do this from RTL that would be great. TKS!
Import this chart: https://www.linnsoft.com/charts/cp-buyvolumestat-es
So in the lower pane, we are dividing the buy volume (ask volume) of the high price, by the buy volume of the price below the high....
...with a custom indicator with this syntax...
MPH_HI / MPH_NEXT
...with MPH_HI setup like this....
and MPH_NEXT setup like...
a few other ways you can do this but this gets it done. That MPH_NEXT is a little tricky, but it basically is setup to grab the 2 highest prices, but then applies the filter that it has to be at least 1 price from the high of the bar (leaving only the price below the high). Then extracting the buy volume (ask volume) from there.
Hope that helps.
Thanks, this is very helpful!