Bid/Ask Information on Chart

Login or Register

Please login or register in order to view and post in the Forum.

3 posts / 0 new
Last post
Edward01
Last seen: 2 days 9 hours ago
Joined: 08/09/2018 - 10:41
Bid/Ask Information on Chart

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!

0
cpayne
Last seen: 1 year 7 months ago
Joined: 03/30/2009 - 00:00
Buy Volume Stat

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.

Edward01
Last seen: 2 days 9 hours ago
Joined: 08/09/2018 - 10:41
Thanks, this is very helpful!

Thanks, this is very helpful!