Limited martingale

Welcome to the enclosure. No top-hats required!

Limited martingale

Postby marwanco » Wed Oct 07, 2015 9:08 pm

Hello,
I have idea for a strategy, before start testing it I need constructive criticism from you.
I want to try a martingale system , doubling the money on every new horse reaching odds=2.0
According to my observation max 4 horse can reach odds=2 in one race.
So back the first at 2 x10$
Second at 2x20
Third at 2x40
Fourth at 2x80

The goal is to win the initial 10$ bet.

The problem I see:
1.i might not hit odds =2 all time, sometime it will be smaller, due to latency.
2."PLACED" in status field prevent to place a bet on same horse second time, in case the horse odds increases and then come back to 2 again,and there was another horse that hit 2 odds with doubled money,This is crucial.required a way to clear status.
3.if doubling the money not enough, tripling could be tried next.

thanks
marwanco
 
Posts: 20
Joined: Mon Aug 24, 2015 9:16 pm

Re: Limited martingale

Postby Gavin » Wed Oct 07, 2015 11:40 pm

Hi Marwanco,

I have already written an article on why I believe Martingale should always be avoided, please see here:

Why to avoid Martingale

I'm not convinced that a limited Martingale is any better.

Kind regards,

Gavin
User avatar
Gavin
Site Admin
 
Posts: 3835
Joined: Wed Jan 23, 2013 9:11 pm
Location: United Kingdom

Re: Limited martingale

Postby marwanco » Sat Oct 10, 2015 2:58 am

Thank you Gavin for your reply,

What is the easiest way to clear a status cell?
Macro,vba, udf, or excel built in functions?
I whant to place a back bet more than once on same horse.
Thanks
marwanco
 
Posts: 20
Joined: Mon Aug 24, 2015 9:16 pm

Re: Limited martingale

Postby sjaak1943 » Sat Oct 10, 2015 8:05 am

Private Sub Worksheet_Calculate()
Dim Working As Range
Set Working = Range("A1:BW26")
Dim X As Integer
Dim Y As Integer
Y = Range("BW5").Value


If Range("BB3").Value > 0 Then

For X = 8 To Y
If Range("BD" & X) = "PLACED" Then
Range("BD" & X).Value = ""
End If

Next X


End If


End Sub


BW5=H4+7 (last row with a runner)
BB3 tells if race is "In Play" or not.
Sjaak

To make a bot is easier then making money with it!
sjaak1943
 
Posts: 63
Joined: Tue Mar 03, 2015 6:31 pm

Re: Limited martingale

Postby Gavin » Sat Oct 10, 2015 12:33 pm

Hi Marwanco,

Yes VBA, I agree with Sjaak.

Just make sure that you don't cause an infinite number of bets to be sent, which can happen if you are repeatedly clearing the status cell.

Kind regards,

Gavin
User avatar
Gavin
Site Admin
 
Posts: 3835
Joined: Wed Jan 23, 2013 9:11 pm
Location: United Kingdom

Re: Limited martingale

Postby marwanco » Sun Oct 18, 2015 3:01 am

Many Thanks.
marwanco
 
Posts: 20
Joined: Mon Aug 24, 2015 9:16 pm


Return to Horse Racing

Who is online

Users browsing this forum: No registered users and 0 guests

cron