Moderator: 2020vision
by thonggruss » Mon Apr 07, 2008 6:46 am
by GaryRussell » Tue Apr 08, 2008 2:22 pm
by GaryRussell » Tue Apr 08, 2008 2:42 pm
by Shaun » Wed Jun 22, 2011 1:48 pm
by GaryRussell » Wed Jun 22, 2011 1:56 pm
by GaryRussell » Fri Jun 24, 2011 12:03 pm
by GaryRussell » Wed Aug 31, 2011 9:20 am
Ian wrote:Are the ticks the same at Betdaq as Betfair ?
Function getPrevOdds(ByVal odds As Currency) As Currency
Dim oddsInc As Currency
Select Case odds
Case 1.01 To 3
oddsInc = 0.01
Case 3.05 To 4
oddsInc = 0.05
Case 4.1 To 6
oddsInc = 0.1
Case 6.2 To 10
oddsInc = 0.2
Case 10.5 To 20
oddsInc = 0.5
Case 21 To 50
oddsInc = 1
Case 52 To 200
oddsInc = 2
Case 205 To 1000
oddsInc = 5
End Select
If Math.Round(odds - oddsInc, 2) >= 1.01 Then
getPrevOdds = Math.Round(odds - oddsInc, 2)
Else
getPrevOdds = 1.01
End If
End Function
Function getNextOdds(ByVal odds As Currency) As Currency
Dim oddsInc As Currency
Select Case odds
Case 1 To 2.99
oddsInc = 0.01
Case 3 To 3.95
oddsInc = 0.05
Case 4 To 5.9
oddsInc = 0.1
Case 6 To 9.8
oddsInc = 0.2
Case 10 To 19.5
oddsInc = 0.5
Case 20 To 49
oddsInc = 1
Case 50 To 198
oddsInc = 2
Case 200 To 1000
oddsInc = 5
End Select
If Math.Round(odds + oddsInc, 2) <= 1000 Then
getNextOdds = Math.Round(odds + oddsInc, 2)
Else
getNextOdds = 1000
End If
End Function
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.