Multiple bets, different odds

Please post any questions regarding the program here.

Moderator: 2020vision

Multiple bets, different odds

Postby 813615 » Thu Apr 13, 2023 9:55 am

Morning guys, been searching the forum but unable to find if it's possible to place a number of bets on the same horse but different odds using formula rather than VBA as never used that? I've done the clear ref cell following the first bet being matched but not sure on how to specify different odds for the next bet? For example, I want to lay a horse whose SP is 10 at 8.0,5.0 & 3.0 is this possible?
Many thanks
Lee
813615
 
Posts: 49
Joined: Mon Sep 30, 2019 5:53 pm

Re: Multiple bets, different odds

Postby alrodopial » Thu Apr 13, 2023 12:13 pm

something like this:
1. in AA column: AA5=If (T5<>"" ,AA5=AA5+1,0) ' bet placed counter
2. in odds column: R5=If(AA5=1,"first odds here",if(AA5=2,"second odds here" .....etc
3. circular reference should be enabled
4. at market change formula in AA5 should become the initial with counter = 0
alrodopial
 
Posts: 1355
Joined: Wed Dec 06, 2006 9:59 pm

Re: Multiple bets, different odds

Postby GaryRussell » Thu Apr 13, 2023 1:17 pm

There is a little known feature where you specify multiple odds and stakes delimited by a pipe.
For example to lay £2 at 1.1, 1.2 and 1.3 put 1.1|1.2|1.3 in odds column and 2|2|2 in stake column
User avatar
GaryRussell
Site Admin
 
Posts: 9695
Joined: Fri Nov 18, 2005 8:09 pm
Location: Birmingham, UK

Re: Multiple bets, different odds

Postby alrodopial » Thu Apr 13, 2023 4:30 pm

what is returned in bet reff column?
alrodopial
 
Posts: 1355
Joined: Wed Dec 06, 2006 9:59 pm

Re: Multiple bets, different odds

Postby 813615 » Thu Apr 13, 2023 4:46 pm

Brilliant thank you guys, Gary that sounds the easiest of options for my limited skills on excel so will try that first, would I have to use the clear bet ref command for this to work?
Thank you all
Lee
813615
 
Posts: 49
Joined: Mon Sep 30, 2019 5:53 pm

Re: Multiple bets, different odds

Postby GaryRussell » Thu Apr 13, 2023 5:05 pm

813615 wrote:Brilliant thank you guys, Gary that sounds the easiest of options for my limited skills on excel so will try that first, would I have to use the clear bet ref command for this to work?
Thank you all
Lee

Yes. You always need to clear the bet ref column to allow more bets to be placed.
User avatar
GaryRussell
Site Admin
 
Posts: 9695
Joined: Fri Nov 18, 2005 8:09 pm
Location: Birmingham, UK

Re: Multiple bets, different odds

Postby GaryRussell » Thu Apr 13, 2023 5:06 pm

alrodopial wrote:what is returned in bet reff column?

Just the first bet reference. So in my example the odds were 1.1|1.2|1.3. The bet reference for the lay bet at 1.1 would be returned.
User avatar
GaryRussell
Site Admin
 
Posts: 9695
Joined: Fri Nov 18, 2005 8:09 pm
Location: Birmingham, UK

Re: Multiple bets, different odds

Postby 813615 » Thu Apr 13, 2023 5:49 pm

GaryRussell wrote:
813615 wrote:Brilliant thank you guys, Gary that sounds the easiest of options for my limited skills on excel so will try that first, would I have to use the clear bet ref command for this to work?
Thank you all
Lee

Yes. You always need to clear the bet ref column to allow more bets to be placed.



Ok thanks all for a speedy reply
Lee
813615
 
Posts: 49
Joined: Mon Sep 30, 2019 5:53 pm

Re: Multiple bets, different odds

Postby 813615 » Thu Apr 13, 2023 6:47 pm

813615 wrote:Brilliant thank you guys, Gary that sounds the easiest of options for my limited skills on excel so will try that first, would I have to use the clear bet ref command for this to work?
Thank you all
Lee

Hi Gary and sorry for this. I've tried adding the pipe in the odds column and it won't accept it as I'm guessing it not in the right formula, I've googled how to do and found some info about adding like so '=AddDelimiter(AG5,AH5,AI5))' in the odds column (AG5, AH5, AI5 being the specified odds value) but all I get now is '#NAME' so guessing that's not right, any help please?
Thanks
Lee
813615
 
Posts: 49
Joined: Mon Sep 30, 2019 5:53 pm

Re: Multiple bets, different odds

Postby alrodopial » Thu Apr 13, 2023 7:00 pm

813615 wrote:Hi Gary and sorry for this. I've tried adding the pipe in the odds column and it won't accept it as I'm guessing it not in the right formula, I've googled how to do and found some info about adding like so '=AddDelimiter(AG5,AH5,AI5))' in the odds column (AG5, AH5, AI5 being the specified odds value) but all I get now is '#NAME' so guessing that's not right, any help please?
Thanks
Lee


R5 = AG5 & "|" & AH5 & "|" & AI5
alrodopial
 
Posts: 1355
Joined: Wed Dec 06, 2006 9:59 pm

Re: Multiple bets, different odds

Postby Captain Sensible » Thu Apr 13, 2023 7:36 pm

GaryRussell wrote:There is a little known feature where you specify multiple odds and stakes delimited by a pipe.
For example to lay £2 at 1.1, 1.2 and 1.3 put 1.1|1.2|1.3 in odds column and 2|2|2 in stake column


Never knew about that, you should advertise it more as it's probably something a lot would use. Do the bets all go in the same place bets submission?
User avatar
Captain Sensible
 
Posts: 2883
Joined: Sat Nov 19, 2005 2:29 pm

Re: Multiple bets, different odds

Postby 813615 » Thu Apr 13, 2023 7:56 pm

alrodopial wrote:
813615 wrote:Hi Gary and sorry for this. I've tried adding the pipe in the odds column and it won't accept it as I'm guessing it not in the right formula, I've googled how to do and found some info about adding like so '=AddDelimiter(AG5,AH5,AI5))' in the odds column (AG5, AH5, AI5 being the specified odds value) but all I get now is '#NAME' so guessing that's not right, any help please?
Thanks
Lee


R5 = AG5 & "|" & AH5 & "|" & AI5

Thank you
813615
 
Posts: 49
Joined: Mon Sep 30, 2019 5:53 pm

Re: Multiple bets, different odds

Postby GaryRussell » Fri Apr 14, 2023 5:21 am

Captain Sensible wrote:
GaryRussell wrote:There is a little known feature where you specify multiple odds and stakes delimited by a pipe.
For example to lay £2 at 1.1, 1.2 and 1.3 put 1.1|1.2|1.3 in odds column and 2|2|2 in stake column


Never knew about that, you should advertise it more as it's probably something a lot would use. Do the bets all go in the same place bets submission?

Yes they do.
User avatar
GaryRussell
Site Admin
 
Posts: 9695
Joined: Fri Nov 18, 2005 8:09 pm
Location: Birmingham, UK

Re: Multiple bets, different odds

Postby Captain Sensible » Sun Apr 16, 2023 6:54 pm

Thanks, is it possible to place back and lay bets in the same submission with excel or would I need to code that using the COM
User avatar
Captain Sensible
 
Posts: 2883
Joined: Sat Nov 19, 2005 2:29 pm

Re: Multiple bets, different odds

Postby GaryRussell » Mon Apr 17, 2023 9:45 am

Captain Sensible wrote:Thanks, is it possible to place back and lay bets in the same submission with excel or would I need to code that using the COM

Sorry you will still need to use COM for this. It's something I can consider for a future version.
User avatar
GaryRussell
Site Admin
 
Posts: 9695
Joined: Fri Nov 18, 2005 8:09 pm
Location: Birmingham, UK

Next

Return to Help

Who is online

Users browsing this forum: No registered users and 151 guests

Sports betting software from Gruss Software


The strength of Gruss Software is that it’s been designed by one of you, a frustrated sports punter, and then developed by listening to dozens of like-minded enthusiasts.

Gruss is owned and run by brothers Gary and Mark Russell. Gary discovered Betfair in 2004 and soon realised that using bespoke software to place bets was much more efficient than merely placing them through the website.

Gary built his own software and then enhanced its features after trialling it through other Betfair users and reacting to their improvement ideas, something that still happens today.

He started making a small monthly charge so he could work on it full-time and then recruited Mark to help develop the products and Gruss Software was born.

We think it’s the best of its kind and so do a lot of our customers. But you can never stand still in this game and we’ll continue to improve the software if any more great ideas emerge.