analyze_fixtures
Analyze upcoming fixtures for players, teams, or positions in Fantasy Premier League. Get difficulty ratings, blank gameweek details, and double gameweek insights for strategic planning.
Instructions
Analyze upcoming fixtures for players, teams, or positions
Args:
entity_type: Type of entity to analyze ("player", "team", or "position")
entity_name: Name of the specific entity
num_gameweeks: Number of gameweeks to look ahead
include_blanks: Whether to include blank gameweek info
include_doubles: Whether to include double gameweek info
Returns:
Fixture analysis with difficulty ratings and summary
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entity_name | No | ||
entity_type | No | player | |
include_blanks | No | ||
include_doubles | No | ||
num_gameweeks | No |
Input Schema (JSON Schema)
{
"properties": {
"entity_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Entity Name"
},
"entity_type": {
"default": "player",
"title": "Entity Type",
"type": "string"
},
"include_blanks": {
"default": true,
"title": "Include Blanks",
"type": "boolean"
},
"include_doubles": {
"default": true,
"title": "Include Doubles",
"type": "boolean"
},
"num_gameweeks": {
"default": 5,
"title": "Num Gameweeks",
"type": "integer"
}
},
"title": "analyze_fixturesArguments",
"type": "object"
}