Ever wondered what would happen if you just bet on the same team every week for the entire season? I admit it doesn’t sound like the best strategy for making money, however when you look at the data you might not actually be out of pocket as much as you think, and you could actually make some cash.

I decided to use the 18/19 Premiership season to test out the theory. In the screenshot below you can see that I create a Pandas dataframe containing all 18/19 match results (FTR=1,2,0 for home win, away win or draw), with their corresponding bookmaker odds taken from Bet365, and then filtered it by team. I’m going to use the 18/19 champions Man City as the first example.

If we iterate through the list of games and work out how much we would win or lose with the same unit bet we can achieve this with some simple python code.

def team_won(row, team):
   if row['HomeTeam'] == team and row['FTR'] == 1 :
        return 1
   if row['AwayTeam'] == team and row['FTR'] == 2 :
        return 1
   return 0

def team_odds(row, team):
   if row['HomeTeam'] == team :
        return row['B365H']
   if row['AwayTeam'] == team :
        return row['B365A']
   return '0'

stake = 10

df_city['TeamOdds'] = df_city.apply (lambda row: team_odds(row, team), axis=1)
df_city['TeamWon'] = df_city.apply (lambda row: team_won(row, team), axis=1)
df_city['Winnings'] = (df_city["TeamOdds"]-1)*df_city["TeamWon"]*stake
df_city.loc[df_city["Winnings"]==0, "Winnings"] = -stake
df_city['RunningTotal'] = df_city["Winnings"].cumsum()
df_city

The Pandas cumsum() function is handy here to keep a running total of the winnings.

DateHomeTeamAwayTeamFTRB365HB365DB365ABbAv>2.5TeamOddsTeamWonWinningsRunningTotal
12/08/2018ArsenalMan City243.81.951.551.9519.59.5
19/08/2018Man CityHuddersfield11.113261.321.11110.5
25/08/2018WolvesMan City0116.51.281.541.280-100.5
01/09/2018Man CityNewcastle11.1111261.371.1111.11.6
15/09/2018Man CityFulham11.1210261.261.1211.22.8
22/09/2018CardiffMan City22381.161.451.1611.64.4
29/09/2018Man CityBrighton11.112341.31.1115.4
07/10/2018LiverpoolMan City02.543.62.81.622.80-10-4.6
20/10/2018Man CityBurnley11.0813341.281.0810.8-3.8
29/10/2018TottenhamMan City24.754.11.751.581.7517.53.7
04/11/2018Man CitySouthampton11.1111291.31.1111.14.8
11/11/2018Man CityMan United11.45.258.51.481.4148.8
24/11/2018West HamMan City2136.51.251.431.2512.511.3
01/12/2018Man CityBournemouth11.1111261.251.1111.112.4
04/12/2018WatfordMan City21161.31.51.31315.4
08/12/2018ChelseaMan City143.81.951.691.950-105.4
15/12/2018Man CityEverton11.227.5131.381.2212.27.6
22/12/2018Man CityCrystal Palace21.1410211.351.140-10-2.4
26/12/2018LeicesterMan City19.55.251.361.61.360-10-12.4
30/12/2018SouthamptonMan City2105.251.31.541.313-9.4
03/01/2019Man CityLiverpool12.043.83.61.542.04110.41
14/01/2019Man CityWolves11.188171.471.1811.82.8
20/01/2019HuddersfieldMan City2218.51.161.491.1611.64.4
29/01/2019NewcastleMan City11981.181.461.180-10-5.6
03/02/2019Man CityArsenal11.33691.351.3313.3-2.3
06/02/2019EvertonMan City2106.251.31.491.3130.7
10/02/2019Man CityChelsea11.54.7571.621.5155.7
27/02/2019Man CityWest Ham11.169191.341.1611.67.3
02/03/2019BournemouthMan City2137.51.221.391.2212.29.5
09/03/2019Man CityWatford11.169191.321.1611.611.1
30/03/2019FulhamMan City221111.121.291.1211.212.3
03/04/2019Man CityCardiff11.0617341.221.0610.612.9
14/04/2019Crystal PalaceMan City21161.31.61.31315.9
20/04/2019Man CityTottenham11.36111.431.31318.9
24/04/2019Man UnitedMan City27.551.441.521.4414.423.3
28/04/2019BurnleyMan City22391.141.411.1411.424.7
06/05/2019Man CityLeicester11.128.5171.311.1211.225.9
12/05/2019BrightonMan City2198.51.161.411.1611.627.5

At the end of the season we’re a full £27.50 up based on our £10 unit bet! Not exactly rolling in it, but then better than nothing! and also, we were never much down during the season, the most being £12.40 in the red in December after they were beaten by Leicester.

Here are some more examples of what you would have won betting just betting on a single team in the 18/19 season. Remember that this was how the league table ended up:

Here are the winnings of the teams who finished in the Top 10.

  • Man City +£27.50
  • Liverpool +£30.80
  • Chelsea -£44.70
  • Tottenham +£18.30
  • Arsenal -£1.60
  • Man United -£50.30
  • Wolves +£97.40
  • Everton -£31.30
  • Leicester City +£132.30
  • West Ham +£71.60

The Leicester winnings are highest, much of that is due to them beating Man City mid season at high odds. Definitely interesting that you could make money betting on the same team to win each week (at least for 6 teams out of the top 10), especially the “unfashionable” teams such as Wolves, Leicester and West Ham.


0 Comments

Leave a Reply