# Premier League Title Race Odds - Monte Carlo Model

**Use case:** 

Simulate the remaining Premier League fixtures 10,000 times and get every club's fair title, top-four and relegation probability. No scraping, no API key.

## Input

```json
{
  "leagues": [
    "eng.1"
  ],
  "iterations": 10000,
  "historySeasons": 3,
  "homeAdvantage": 0.34,
  "edgeThreshold": 0.05,
  "includeInjuries": false,
  "apiFootballLeagueIds": {},
  "marketProbabilities": []
}
```

## Output

```json
{
  "league": {
    "label": "League",
    "format": "string"
  },
  "table": {
    "label": "Table",
    "format": "string"
  },
  "team": {
    "label": "Team",
    "format": "string"
  },
  "gamesPlayed": {
    "label": "Games played",
    "format": "number"
  },
  "currentPoints": {
    "label": "Current points",
    "format": "number"
  },
  "remainingGames": {
    "label": "Remaining games",
    "format": "integer"
  },
  "projectedAvgFinalPoints": {
    "label": "Projected final points",
    "format": "number"
  },
  "fairTitleProbability": {
    "label": "Title probability",
    "format": "number"
  },
  "fairQualifyProbability": {
    "label": "Qualification probability",
    "format": "number"
  },
  "fairPlayoffProbability": {
    "label": "Playoff probability",
    "format": "number"
  },
  "fairRelegationProbability": {
    "label": "Relegation probability",
    "format": "number"
  }
}
```

## 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.