Moderator: 2020vision
by milfor » Sun Dec 20, 2015 3:54 pm
by Captain Sensible » Sun Dec 20, 2015 4:19 pm
by milfor » Mon Dec 21, 2015 7:55 pm
by alrodopial » Mon Dec 21, 2015 8:06 pm
by Captain Sensible » Mon Dec 21, 2015 8:42 pm
by milfor » Mon Dec 21, 2015 9:09 pm
Function lese(tabelle, zeile, spalte)
lese = Worksheets(tabelle).Cells(zeile, spalte).Value
End Function
Sub schreibe(tabelle, zeile, spalte, inhalt)
Worksheets(tabelle).Cells(zeile, spalte).Value = inhalt
End Sub
Function schritt(quote)
If quote < 2 Then
schritt = 0.01
ElseIf quote < 3 Then
schritt = 0.02
ElseIf quote < 4 Then
schritt = 0.05
ElseIf quote < 6 Then
schritt = 0.1
ElseIf quote < 10 Then
schritt = 0.2
ElseIf quote < 20 Then
schritt = 0.5
ElseIf quote < 30 Then
schritt = 1
ElseIf quote < 50 Then
schritt = 2
ElseIf quote < 100 Then
schritt = 5
Else
schritt = 10
End If
End Function
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
If Target.Columns.Count = 16 Then
If Now - Int(Now) > 11 / 24 Then
For zeile = 2 To 1000
If lese(1, zeile - 1, 1) = "Selection name" Then
neu = lese(1, zeile, 15)
spalte = 0
Do
spalte = spalte + 1
Loop Until lese(2, zeile, spalte) = ""
If spalte = 1 Then
Call schreibe(2, zeile, spalte, neu)
ElseIf spalte < 4 Then
oben = lese(2, zeile, spalte - 1)
unten = oben
For i = 1 To 5
oben = oben + schritt(oben)
unten = unten - schritt(unten)
Next i
If neu > oben - 0.001 Or neu < unten + 0.001 Then
Call schreibe(2, zeile, spalte, neu)
End If
End If
End If
DoEvents
Next zeile
End If
End If
Application.EnableEvents = True
End Sub
by milfor » Tue Dec 22, 2015 12:12 pm
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Application.EnableEvents = False
If Target.Columns.Count = 16 Then
For i = 1 To 1000
If Worksheets(1).Cells(i, 1).Value = "" Then
End If
Next i
End If
Application.EnableEvents = True
End Sub
by Captain Sensible » Tue Dec 22, 2015 1:05 pm
by milfor » Tue Dec 22, 2015 1:19 pm
by Captain Sensible » Tue Dec 22, 2015 3:04 pm
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.