-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsample.config.json
69 lines (69 loc) · 1.91 KB
/
sample.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"projection_path": "projections.csv",
"player_path": "player_ids.csv",
"contest_structure_path": "contest_structure.csv",
"use_double_te": false,
"global_team_limit": 4,
"projection_minimum": 5,
"randomness": 25,
"min_lineup_salary": 49200,
"max_pct_off_optimal": 0.25,
"num_players_vs_def" : 0,
"pct_field_using_stacks" : 0.65,
"pct_field_double_stacks": 0.4,
"default_qb_var" : 0.4,
"default_skillpos_var" : 0.5,
"default_def_var" : 0.5,
"allow_qb_vs_dst": false,
"at_most": {
"1": [["Ezekiel Elliott", "Tony Pollard"]]
},
"at_least": {
"1": [
["Patrick Mahomes"],
["Travis Kelce"],
["Ja'Marr Chase", "Joe Mixon", "Tee Higgins", "Tyler Boyd"]
]
},
"stack_rules": {
"pair": [
{
"key": "QB",
"positions": ["WR", "TE"],
"count": 2,
"type": "same-team",
"exclude_teams": []
},
{
"key": "QB",
"positions": ["WR", "TE", "RB"],
"count": 1,
"type": "opp-team",
"exclude_teams": []
}
],
"limit": [
{
"positions": ["RB"],
"type": "same-team",
"count": 1,
"exclude_teams": []
},
{
"positions": ["WR", "TE"],
"type": "same-team",
"count": "1",
"exclude_teams": [],
"unless_positions": ["QB"],
"unless_type": "same-game"
}
]
},
"matchup_limits": {},
"matchup_at_least": {},
"team_limits": {},
"custom_correlations" : {
"Brock Purdy": {"Opp QB": 0.69, "WR":-0.42},
"Jayden Reed" : {"Jahmyr Gibbs": 0.69, "AJ Dillon":-0.42}
}
}