# MLB Wild Card Race Odds - Live Simulation

**Use case:** 

Track the American League and National League wild card races with fair probabilities from thousands of simulated remaining schedules.

## Input

```json
{
  "iterations": 20000,
  "regressionGames": 70,
  "pythagoreanWeight": 0.6,
  "homeFieldAdvantage": 0.16,
  "strengthUncertainty": 0.1,
  "edgeThreshold": 0.05,
  "bankroll": 1000,
  "maxPerPositionPct": 0.02,
  "maxTotalExposurePct": 0.06,
  "marketProbabilities": [
    {
      "team": "Seattle Mariners",
      "market": "playoff",
      "impliedProbability": 0.48
    },
    {
      "team": "Chicago White Sox",
      "market": "playoff",
      "impliedProbability": 0.45
    },
    {
      "team": "Philadelphia Phillies",
      "market": "playoff",
      "impliedProbability": 0.85
    },
    {
      "team": "Houston Astros",
      "market": "division",
      "impliedProbability": 0.4
    }
  ]
}
```

## Output

```json
{
  "division": {
    "label": "Division",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "projectedWins": {
    "label": "Projected wins",
    "format": "number"
  },
  "fairDivisionProbability": {
    "label": "Division %",
    "format": "number"
  },
  "fairWildCardProbability": {
    "label": "Wild card %",
    "format": "number"
  },
  "fairPlayoffProbability": {
    "label": "Playoff %",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [MLB Playoff Odds Monte Carlo Simulator](https://apify.com/commodus67/mlb-playoff-odds-monte-carlo) with a specific input configuration. Visit the [Actor detail page](https://apify.com/commodus67/mlb-playoff-odds-monte-carlo) to learn more, explore other use cases, and run it yourself.