# FPL Price Change Predictor — Risers & Fallers

**Use case:** 

Predict tonight's FPL price risers and fallers from net transfer rates so you can time transfers before the change.

## Input

```json
{
  "mode": "price_change_predictor",
  "managerIds": [],
  "leagueIds": [],
  "picksTopN": 5,
  "picksDifferentialThresholdPct": 5,
  "picksFixtureLookahead": 3,
  "optimizerBudget": 100,
  "leagueTopManagersPerLeague": 50,
  "priceMinConfidence": 0.5,
  "priceIncludeNeutral": false,
  "liveRefreshIntervalSec": 0,
  "liveMaxSnapshots": 1,
  "historicalSeasons": [],
  "historicalDataType": "per_gameweek",
  "enableAiVerdict": false,
  "maxItems": 1000
}
```

## Output

```json
{
  "player.webName": {
    "label": "Player",
    "format": "text"
  },
  "player.team.shortName": {
    "label": "Team",
    "format": "text"
  },
  "player.cost": {
    "label": "Current £m",
    "format": "number"
  },
  "predictedDirection": {
    "label": "Direction",
    "format": "text"
  },
  "predictedNewCost": {
    "label": "Predicted £m",
    "format": "number"
  },
  "netTransferRate": {
    "label": "Net rate",
    "format": "number"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [FPL Intelligence - Picks, Optimizer, Watchlist, History](https://apify.com/constructive_calm/fpl-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/fpl-intelligence) to learn more, explore other use cases, and run it yourself.