-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.js
More file actions
60 lines (59 loc) · 1.14 KB
/
Copy pathsettings.js
File metadata and controls
60 lines (59 loc) · 1.14 KB
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
const bookmarkers = [{
id: 1,
name: "10Bet"
},
{
id: 2,
name: "Marathonbet"
},
{
id: 3,
name: "Betfair"
},
{
id: 4,
name: "Pinnacle"
},
{
id: 5,
"name": "SBO"
},
{
"id": 6,
"name": "Bwin"
}
];
module.exports = {
numbersOfPlayPerWeek: 7,
numbersOfPlayPerDay: 1,
amountPerWin: 10 * 100,
lowestOdd: 1.20,
bookmarker: 8, // Bet365
timeGap: 5,
numbersOfOutcomeToPlay: 10,
outcomeToUse: [
"Match Winner",
"Both Teams Score",
"Goals Over/Under",
"Corners Over Under",
"Both Teams Score",
"Handicap Result",
"Goals Over/Under First Half",
"Highest Scoring Half",
"First 10 min Winner",
"HT/FT Double",
"Win Both Halves"
]
}
// The 10 outcomes are
// 1. 1 x 2 -
// 2. Both teams to score -
// 3. Over 2.5 goals -
// 4. Over 9.5 corners -
// 5. Over 3.5 yellow cards
// 6. 1st half draw
// 7. Under 1.5 first half -
// 8. Handicapped -
// 9. Most scoring half -
// 10. Halftime/fulltime -
// 11. Win Both Halves