
Is anyone able to help me out with a formula/help...
I am trying to indicate the number of tics between BSP and IPMIN as shown in the column to the right.
Apologies if this has already been posted, and thanks in advance.
RR
Thanks for the post…
Superb, Thanks for the reply Pat!Trader Pat wrote: ↑Thu Aug 05, 2021 3:16 pmHow I do something similiar is I have a column that lists all Betfair prices 1.01 - 100. I then use the MATCH function to find where in the list the two prices are and then in a destination cell I just subtract one number from the other which gives the distance between the two numbers which is the same as the number of ticks.
So in your example if you wanted to know the # of ticks between 18.00 and 11.50 assuming 18.00 was in cell H5 and 11.50 was in cell I5 and the Betfair prices were listed in say column Q
Pick a cell and enter the formula =MATCH(H5,Q:Q,0) would give you the position in the list of 36
In the cell below =MATCH(I5,Q:Q,0) would give 49
Then in the cell you want the answer to appear in subtract one cell from the other. In my example this would be =AF12-AF13 which gives -13 so 13 ticks.
The problem you'll run into is BSP numbers like 38.27 & 69.79 obviously won't be in the list so you'll have to round the BSP numbers and add formulas that round numbers to whatever the interval is, so numbers between 10 and 20 will have to be rounded to nearest .5, number between 30 and 50 to nearest 2 etc...
It's not as elegant as the previous post but might be easier to get your head around.
No problemRealrocknrolla wrote: ↑Thu Aug 05, 2021 3:25 pmSuperb, Thanks for the reply Pat!
Makes perfect sense.
If you put the code into a VBA module and use the formula:Realrocknrolla wrote: ↑Thu Aug 05, 2021 3:12 pmThanks for the post…
A bit over my head that one.. i am probably being presumptuous in thinking there is a simpler method.
Thanks mate. Will give it a play.rostov wrote: ↑Thu Aug 05, 2021 4:30 pmIf you put the code into a VBA module and use the formula:Realrocknrolla wrote: ↑Thu Aug 05, 2021 3:12 pmThanks for the post…
A bit over my head that one.. i am probably being presumptuous in thinking there is a simpler method.
=getTicks(K8,L8)
K8 is the BSP and L8 is the IPMIN
The result will be the tick difference.
Use the formularostov wrote: ↑Thu Aug 05, 2021 4:30 pmIf you put the code into a VBA module and use the formula:Realrocknrolla wrote: ↑Thu Aug 05, 2021 3:12 pmThanks for the post…
A bit over my head that one.. i am probably being presumptuous in thinking there is a simpler method.
=getTicks(K8,L8)
K8 is the BSP and L8 is the IPMIN
The result will be the tick difference.