# Football Value Bets vs Bookmaker Odds

**Use case:** 

Compare your bookmaker's implied title probabilities with a Monte Carlo model and see the edge on every club. Swap in your own odds.

## Input

```json
{
  "leagues": [
    "eng.1",
    "esp.1"
  ],
  "iterations": 10000,
  "historySeasons": 3,
  "homeAdvantage": 0.34,
  "edgeThreshold": 0.03,
  "includeInjuries": false,
  "apiFootballLeagueIds": {},
  "marketProbabilities": [
    {
      "team": "Liverpool",
      "league": "eng.1",
      "marketProbability": 0.3
    },
    {
      "team": "Arsenal",
      "league": "eng.1",
      "marketProbability": 0.28
    },
    {
      "team": "Manchester City",
      "league": "eng.1",
      "marketProbability": 0.22
    },
    {
      "team": "Real Madrid",
      "league": "esp.1",
      "marketProbability": 0.45
    },
    {
      "team": "Barcelona",
      "league": "esp.1",
      "marketProbability": 0.4
    }
  ]
}
```

## Output

```json
{
  "team": {
    "label": "Team",
    "format": "string"
  },
  "league": {
    "label": "League",
    "format": "string"
  },
  "fairTitleProbability": {
    "label": "Title probability",
    "format": "number"
  },
  "marketProbability": {
    "label": "Market probability",
    "format": "number"
  },
  "edge": {
    "label": "Edge",
    "format": "number"
  },
  "hasValue": {
    "label": "Has value",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Football (Soccer) Monte Carlo Season Predictor](https://apify.com/commodus67/football-soccer-monte-carlo-predictor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/commodus67/football-soccer-monte-carlo-predictor) to learn more, explore other use cases, and run it yourself.