overtime-live-trading-utils 2.1.44 → 2.1.45-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.js +1 -1
- package/package.json +1 -1
- package/src/constants/common.ts +1 -0
- package/src/constants/errors.ts +1 -0
- package/src/tests/mock/MockLeagueMap.ts +30 -0
- package/src/tests/mock/MockOpticSoccer.ts +486 -0
- package/src/tests/unit/bookmakers.test.ts +78 -8
- package/src/tests/unit/markets.test.ts +33 -12
- package/src/tests/unit/odds.test.ts +20 -8
- package/src/tests/unit/spread.test.ts +24 -10
- package/src/tests/utils/helper.ts +10 -0
- package/src/types/bookmakers.ts +7 -0
- package/src/types/odds.ts +19 -0
- package/src/types/sports.ts +4 -1
- package/src/utils/bookmakers.ts +164 -1
- package/src/utils/markets.ts +42 -41
- package/src/utils/odds.ts +73 -38
- package/tsconfig.json +1 -1
package/package.json
CHANGED
package/src/constants/common.ts
CHANGED
|
@@ -2,6 +2,7 @@ export const ZERO = 0;
|
|
|
2
2
|
export const DRAW = 'Draw';
|
|
3
3
|
export const MONEYLINE_TYPE_ID = 0;
|
|
4
4
|
export const MIN_ODDS_FOR_DIFF_CHECKING = 0.2;
|
|
5
|
+
export const MAX_IMPLIED_PERCENTAGE_DIFF = 20; // 20%
|
|
5
6
|
export const TAG_CHILD_SPREAD = 10001;
|
|
6
7
|
export const TAG_CHILD_TOTALS = 10002;
|
|
7
8
|
export const MULTIPLIER_100 = 100;
|
package/src/constants/errors.ts
CHANGED
|
@@ -4,3 +4,4 @@ export const DIFF_BETWEEN_BOOKMAKERS_MESSAGE = 'Returning zero odds due to perce
|
|
|
4
4
|
export const NO_MATCHING_BOOKMAKERS_MESSAGE = 'Returning zero odds cause no matching bookmakers have been found';
|
|
5
5
|
export const ZERO_ODDS_AFTER_SPREAD_ADJUSTMENT = 'Bad odds after spread adjustment';
|
|
6
6
|
export const NO_MARKETS_FOR_LEAGUE_ID = 'No child markets for leagueID';
|
|
7
|
+
export const LAST_POLLED_TOO_OLD = 'Last polled data is too old';
|
|
@@ -110,6 +110,28 @@ const willThereBeOvertime: LeagueConfigInfo = {
|
|
|
110
110
|
minOdds: 0.99,
|
|
111
111
|
};
|
|
112
112
|
|
|
113
|
+
const teamTotal: LeagueConfigInfo = {
|
|
114
|
+
sportId: 9806,
|
|
115
|
+
enabled: 'true',
|
|
116
|
+
marketName: 'Team Total',
|
|
117
|
+
typeId: 10017,
|
|
118
|
+
type: 'Total',
|
|
119
|
+
maxOdds: 0.25,
|
|
120
|
+
minOdds: 0.75,
|
|
121
|
+
primaryBookmaker: 'draftkings',
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
const teamTotal2: LeagueConfigInfo = {
|
|
125
|
+
sportId: 9806,
|
|
126
|
+
enabled: 'true',
|
|
127
|
+
marketName: 'Team Total',
|
|
128
|
+
typeId: 10018,
|
|
129
|
+
type: 'Total',
|
|
130
|
+
maxOdds: 0.25,
|
|
131
|
+
minOdds: 0.75,
|
|
132
|
+
primaryBookmaker: 'draftkings',
|
|
133
|
+
};
|
|
134
|
+
|
|
113
135
|
const baseDiffSportId: LeagueConfigInfo = {
|
|
114
136
|
...baseLeagueInfo,
|
|
115
137
|
sportId: 4,
|
|
@@ -155,6 +177,13 @@ const leagueInfoEnabledAll: LeagueConfigInfo[] = [
|
|
|
155
177
|
bothTeamsToScoreMock2ndHalf,
|
|
156
178
|
drawNoBetMock,
|
|
157
179
|
willThereBeOvertime,
|
|
180
|
+
teamTotal,
|
|
181
|
+
teamTotal2,
|
|
182
|
+
];
|
|
183
|
+
|
|
184
|
+
const leaguInfoDifferentPrimaryBookmaker: LeagueConfigInfo[] = [
|
|
185
|
+
baseLeagueInfo,
|
|
186
|
+
{ ...spreadMock, primaryBookmaker: 'draftkings' },
|
|
158
187
|
];
|
|
159
188
|
|
|
160
189
|
// Grouped Exports
|
|
@@ -167,4 +196,5 @@ export const LeagueMocks = {
|
|
|
167
196
|
leagueInfoEnabledSpeadAndTotals,
|
|
168
197
|
leagueInfoEnabledAll,
|
|
169
198
|
leagueInfoDisabledCorrectScoreAndDoubleChance,
|
|
199
|
+
leaguInfoDifferentPrimaryBookmaker,
|
|
170
200
|
};
|
|
@@ -9376,3 +9376,489 @@ export const MockOpticSoccer = {
|
|
|
9376
9376
|
},
|
|
9377
9377
|
],
|
|
9378
9378
|
};
|
|
9379
|
+
|
|
9380
|
+
export const MockOddsChildMarketsDifferentBookmakers = {
|
|
9381
|
+
...MockOddsBaseData,
|
|
9382
|
+
odds: [
|
|
9383
|
+
{
|
|
9384
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:san_marino_+2_5',
|
|
9385
|
+
sportsbook: 'DraftKings',
|
|
9386
|
+
market: 'Goal Spread',
|
|
9387
|
+
name: 'San Marino +1.5',
|
|
9388
|
+
is_main: false,
|
|
9389
|
+
selection: 'San Marino',
|
|
9390
|
+
normalized_selection: 'san_marino',
|
|
9391
|
+
market_id: 'goal_spread',
|
|
9392
|
+
selection_line: null,
|
|
9393
|
+
player_id: null,
|
|
9394
|
+
team_id: 'CC6409213C00',
|
|
9395
|
+
price: 1.48,
|
|
9396
|
+
timestamp: 1731890434.0742507,
|
|
9397
|
+
grouping_key: 'default:-1.5',
|
|
9398
|
+
points: 1.5,
|
|
9399
|
+
deep_link: {
|
|
9400
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9401
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9402
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9403
|
+
},
|
|
9404
|
+
limits: null,
|
|
9405
|
+
},
|
|
9406
|
+
|
|
9407
|
+
{
|
|
9408
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:liechtenstein_-2_5',
|
|
9409
|
+
sportsbook: 'DraftKings',
|
|
9410
|
+
market: 'Goal Spread',
|
|
9411
|
+
name: 'Liechtenstein -1.5',
|
|
9412
|
+
is_main: false,
|
|
9413
|
+
selection: 'Liechtenstein',
|
|
9414
|
+
normalized_selection: 'liechtenstein',
|
|
9415
|
+
market_id: 'goal_spread',
|
|
9416
|
+
selection_line: null,
|
|
9417
|
+
player_id: null,
|
|
9418
|
+
team_id: '75B0884699D9',
|
|
9419
|
+
price: 2.05,
|
|
9420
|
+
timestamp: 1731890434.0742507,
|
|
9421
|
+
grouping_key: 'default:-1.5',
|
|
9422
|
+
points: -1.5,
|
|
9423
|
+
deep_link: {
|
|
9424
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9425
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9426
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9427
|
+
},
|
|
9428
|
+
limits: null,
|
|
9429
|
+
},
|
|
9430
|
+
{
|
|
9431
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:san_marino_+2_5',
|
|
9432
|
+
sportsbook: 'bovada',
|
|
9433
|
+
market: 'Goal Spread',
|
|
9434
|
+
name: 'San Marino +1.5',
|
|
9435
|
+
is_main: false,
|
|
9436
|
+
selection: 'San Marino',
|
|
9437
|
+
normalized_selection: 'san_marino',
|
|
9438
|
+
market_id: 'goal_spread',
|
|
9439
|
+
selection_line: null,
|
|
9440
|
+
player_id: null,
|
|
9441
|
+
team_id: 'CC6409213C00',
|
|
9442
|
+
price: 1.5,
|
|
9443
|
+
timestamp: 1731890434.0742507,
|
|
9444
|
+
grouping_key: 'default:-2.5',
|
|
9445
|
+
points: 1.5,
|
|
9446
|
+
deep_link: {
|
|
9447
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9448
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9449
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9450
|
+
},
|
|
9451
|
+
limits: null,
|
|
9452
|
+
},
|
|
9453
|
+
|
|
9454
|
+
{
|
|
9455
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:liechtenstein_-2_5',
|
|
9456
|
+
sportsbook: 'bovada',
|
|
9457
|
+
market: 'Goal Spread',
|
|
9458
|
+
name: 'Liechtenstein -1.5',
|
|
9459
|
+
is_main: false,
|
|
9460
|
+
selection: 'Liechtenstein',
|
|
9461
|
+
normalized_selection: 'liechtenstein',
|
|
9462
|
+
market_id: 'goal_spread',
|
|
9463
|
+
selection_line: null,
|
|
9464
|
+
player_id: null,
|
|
9465
|
+
team_id: '75B0884699D9',
|
|
9466
|
+
price: 2.1,
|
|
9467
|
+
timestamp: 1731890434.0742507,
|
|
9468
|
+
grouping_key: 'default:-1.5',
|
|
9469
|
+
points: -1.5,
|
|
9470
|
+
deep_link: {
|
|
9471
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9472
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9473
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9474
|
+
},
|
|
9475
|
+
limits: null,
|
|
9476
|
+
},
|
|
9477
|
+
|
|
9478
|
+
{
|
|
9479
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:san_marino_+2_5',
|
|
9480
|
+
sportsbook: 'DraftKings',
|
|
9481
|
+
market: 'Goal Spread',
|
|
9482
|
+
name: 'San Marino +2.5',
|
|
9483
|
+
is_main: false,
|
|
9484
|
+
selection: 'San Marino',
|
|
9485
|
+
normalized_selection: 'san_marino',
|
|
9486
|
+
market_id: 'goal_spread',
|
|
9487
|
+
selection_line: null,
|
|
9488
|
+
player_id: null,
|
|
9489
|
+
team_id: 'CC6409213C00',
|
|
9490
|
+
price: 1.462,
|
|
9491
|
+
timestamp: 1731890434.0742507,
|
|
9492
|
+
grouping_key: 'default:-2.5',
|
|
9493
|
+
points: 2.5,
|
|
9494
|
+
deep_link: {
|
|
9495
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9496
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9497
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9498
|
+
},
|
|
9499
|
+
limits: null,
|
|
9500
|
+
},
|
|
9501
|
+
|
|
9502
|
+
{
|
|
9503
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:liechtenstein_-2_5',
|
|
9504
|
+
sportsbook: 'DraftKings',
|
|
9505
|
+
market: 'Goal Spread',
|
|
9506
|
+
name: 'Liechtenstein -2.5',
|
|
9507
|
+
is_main: false,
|
|
9508
|
+
selection: 'Liechtenstein',
|
|
9509
|
+
normalized_selection: 'liechtenstein',
|
|
9510
|
+
market_id: 'goal_spread',
|
|
9511
|
+
selection_line: null,
|
|
9512
|
+
player_id: null,
|
|
9513
|
+
team_id: '75B0884699D9',
|
|
9514
|
+
price: 2,
|
|
9515
|
+
timestamp: 1731890434.0742507,
|
|
9516
|
+
grouping_key: 'default:-2.5',
|
|
9517
|
+
points: -2.5,
|
|
9518
|
+
deep_link: {
|
|
9519
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9520
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9521
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9522
|
+
},
|
|
9523
|
+
limits: null,
|
|
9524
|
+
},
|
|
9525
|
+
{
|
|
9526
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:san_marino_+2_5',
|
|
9527
|
+
sportsbook: 'bovada',
|
|
9528
|
+
market: 'Goal Spread',
|
|
9529
|
+
name: 'San Marino +2.5',
|
|
9530
|
+
is_main: false,
|
|
9531
|
+
selection: 'San Marino',
|
|
9532
|
+
normalized_selection: 'san_marino',
|
|
9533
|
+
market_id: 'goal_spread',
|
|
9534
|
+
selection_line: null,
|
|
9535
|
+
player_id: null,
|
|
9536
|
+
team_id: 'CC6409213C00',
|
|
9537
|
+
price: 1.48,
|
|
9538
|
+
timestamp: 1731890434.0742507,
|
|
9539
|
+
grouping_key: 'default:-2.5',
|
|
9540
|
+
points: 2.5,
|
|
9541
|
+
deep_link: {
|
|
9542
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9543
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9544
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9545
|
+
},
|
|
9546
|
+
limits: null,
|
|
9547
|
+
},
|
|
9548
|
+
|
|
9549
|
+
{
|
|
9550
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:liechtenstein_-2_5',
|
|
9551
|
+
sportsbook: 'bovada',
|
|
9552
|
+
market: 'Goal Spread',
|
|
9553
|
+
name: 'Liechtenstein -2.5',
|
|
9554
|
+
is_main: false,
|
|
9555
|
+
selection: 'Liechtenstein',
|
|
9556
|
+
normalized_selection: 'liechtenstein',
|
|
9557
|
+
market_id: 'goal_spread',
|
|
9558
|
+
selection_line: null,
|
|
9559
|
+
player_id: null,
|
|
9560
|
+
team_id: '75B0884699D9',
|
|
9561
|
+
price: 2.1,
|
|
9562
|
+
timestamp: 1731890434.0742507,
|
|
9563
|
+
grouping_key: 'default:-2.5',
|
|
9564
|
+
points: -2.5,
|
|
9565
|
+
deep_link: {
|
|
9566
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9567
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9568
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9569
|
+
},
|
|
9570
|
+
limits: null,
|
|
9571
|
+
},
|
|
9572
|
+
|
|
9573
|
+
{
|
|
9574
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:san_marino_+2_5',
|
|
9575
|
+
sportsbook: 'DraftKings',
|
|
9576
|
+
market: 'Goal Spread',
|
|
9577
|
+
name: 'San Marino +3.5',
|
|
9578
|
+
is_main: false,
|
|
9579
|
+
selection: 'San Marino',
|
|
9580
|
+
normalized_selection: 'san_marino',
|
|
9581
|
+
market_id: 'goal_spread',
|
|
9582
|
+
selection_line: null,
|
|
9583
|
+
player_id: null,
|
|
9584
|
+
team_id: 'CC6409213C00',
|
|
9585
|
+
price: 1.46,
|
|
9586
|
+
timestamp: 1731890434.0742507,
|
|
9587
|
+
grouping_key: 'default:-3.5',
|
|
9588
|
+
points: 3.5,
|
|
9589
|
+
deep_link: {
|
|
9590
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9591
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9592
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9593
|
+
},
|
|
9594
|
+
limits: null,
|
|
9595
|
+
},
|
|
9596
|
+
|
|
9597
|
+
{
|
|
9598
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:liechtenstein_-3_5',
|
|
9599
|
+
sportsbook: 'DraftKings',
|
|
9600
|
+
market: 'Goal Spread',
|
|
9601
|
+
name: 'Liechtenstein -3.5',
|
|
9602
|
+
is_main: false,
|
|
9603
|
+
selection: 'Liechtenstein',
|
|
9604
|
+
normalized_selection: 'liechtenstein',
|
|
9605
|
+
market_id: 'goal_spread',
|
|
9606
|
+
selection_line: null,
|
|
9607
|
+
player_id: null,
|
|
9608
|
+
team_id: '75B0884699D9',
|
|
9609
|
+
price: 2.5,
|
|
9610
|
+
timestamp: 1731890434.0742507,
|
|
9611
|
+
grouping_key: 'default:-3.5',
|
|
9612
|
+
points: -3.5,
|
|
9613
|
+
deep_link: {
|
|
9614
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9615
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9616
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9617
|
+
},
|
|
9618
|
+
limits: null,
|
|
9619
|
+
},
|
|
9620
|
+
],
|
|
9621
|
+
};
|
|
9622
|
+
|
|
9623
|
+
export const MockOddsChildMarketsDifferentBookmakersPercentageDiff = {
|
|
9624
|
+
...MockOddsBaseData,
|
|
9625
|
+
odds: [
|
|
9626
|
+
{
|
|
9627
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:san_marino_+2_5',
|
|
9628
|
+
sportsbook: 'DraftKings',
|
|
9629
|
+
market: 'Goal Spread',
|
|
9630
|
+
name: 'San Marino +1.5',
|
|
9631
|
+
is_main: false,
|
|
9632
|
+
selection: 'San Marino',
|
|
9633
|
+
normalized_selection: 'san_marino',
|
|
9634
|
+
market_id: 'goal_spread',
|
|
9635
|
+
selection_line: null,
|
|
9636
|
+
player_id: null,
|
|
9637
|
+
team_id: 'CC6409213C00',
|
|
9638
|
+
price: 1.48,
|
|
9639
|
+
timestamp: 1731890434.0742507,
|
|
9640
|
+
grouping_key: 'default:-1.5',
|
|
9641
|
+
points: 1.5,
|
|
9642
|
+
deep_link: {
|
|
9643
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9644
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9645
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9646
|
+
},
|
|
9647
|
+
limits: null,
|
|
9648
|
+
},
|
|
9649
|
+
|
|
9650
|
+
{
|
|
9651
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:liechtenstein_-2_5',
|
|
9652
|
+
sportsbook: 'DraftKings',
|
|
9653
|
+
market: 'Goal Spread',
|
|
9654
|
+
name: 'Liechtenstein -1.5',
|
|
9655
|
+
is_main: false,
|
|
9656
|
+
selection: 'Liechtenstein',
|
|
9657
|
+
normalized_selection: 'liechtenstein',
|
|
9658
|
+
market_id: 'goal_spread',
|
|
9659
|
+
selection_line: null,
|
|
9660
|
+
player_id: null,
|
|
9661
|
+
team_id: '75B0884699D9',
|
|
9662
|
+
price: 2.05,
|
|
9663
|
+
timestamp: 1731890434.0742507,
|
|
9664
|
+
grouping_key: 'default:-1.5',
|
|
9665
|
+
points: -1.5,
|
|
9666
|
+
deep_link: {
|
|
9667
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9668
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9669
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9670
|
+
},
|
|
9671
|
+
limits: null,
|
|
9672
|
+
},
|
|
9673
|
+
{
|
|
9674
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:san_marino_+2_5',
|
|
9675
|
+
sportsbook: 'bovada',
|
|
9676
|
+
market: 'Goal Spread',
|
|
9677
|
+
name: 'San Marino +1.5',
|
|
9678
|
+
is_main: false,
|
|
9679
|
+
selection: 'San Marino',
|
|
9680
|
+
normalized_selection: 'san_marino',
|
|
9681
|
+
market_id: 'goal_spread',
|
|
9682
|
+
selection_line: null,
|
|
9683
|
+
player_id: null,
|
|
9684
|
+
team_id: 'CC6409213C00',
|
|
9685
|
+
price: 1.8,
|
|
9686
|
+
timestamp: 1731890434.0742507,
|
|
9687
|
+
grouping_key: 'default:-2.5',
|
|
9688
|
+
points: 1.5,
|
|
9689
|
+
deep_link: {
|
|
9690
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9691
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9692
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9693
|
+
},
|
|
9694
|
+
limits: null,
|
|
9695
|
+
},
|
|
9696
|
+
|
|
9697
|
+
{
|
|
9698
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:liechtenstein_-2_5',
|
|
9699
|
+
sportsbook: 'bovada',
|
|
9700
|
+
market: 'Goal Spread',
|
|
9701
|
+
name: 'Liechtenstein -1.5',
|
|
9702
|
+
is_main: false,
|
|
9703
|
+
selection: 'Liechtenstein',
|
|
9704
|
+
normalized_selection: 'liechtenstein',
|
|
9705
|
+
market_id: 'goal_spread',
|
|
9706
|
+
selection_line: null,
|
|
9707
|
+
player_id: null,
|
|
9708
|
+
team_id: '75B0884699D9',
|
|
9709
|
+
price: 1.8,
|
|
9710
|
+
timestamp: 1731890434.0742507,
|
|
9711
|
+
grouping_key: 'default:-1.5',
|
|
9712
|
+
points: -1.5,
|
|
9713
|
+
deep_link: {
|
|
9714
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9715
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9716
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9717
|
+
},
|
|
9718
|
+
limits: null,
|
|
9719
|
+
},
|
|
9720
|
+
|
|
9721
|
+
{
|
|
9722
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:san_marino_+2_5',
|
|
9723
|
+
sportsbook: 'DraftKings',
|
|
9724
|
+
market: 'Goal Spread',
|
|
9725
|
+
name: 'San Marino +2.5',
|
|
9726
|
+
is_main: false,
|
|
9727
|
+
selection: 'San Marino',
|
|
9728
|
+
normalized_selection: 'san_marino',
|
|
9729
|
+
market_id: 'goal_spread',
|
|
9730
|
+
selection_line: null,
|
|
9731
|
+
player_id: null,
|
|
9732
|
+
team_id: 'CC6409213C00',
|
|
9733
|
+
price: 1.462,
|
|
9734
|
+
timestamp: 1731890434.0742507,
|
|
9735
|
+
grouping_key: 'default:-2.5',
|
|
9736
|
+
points: 2.5,
|
|
9737
|
+
deep_link: {
|
|
9738
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9739
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9740
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9741
|
+
},
|
|
9742
|
+
limits: null,
|
|
9743
|
+
},
|
|
9744
|
+
|
|
9745
|
+
{
|
|
9746
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:liechtenstein_-2_5',
|
|
9747
|
+
sportsbook: 'DraftKings',
|
|
9748
|
+
market: 'Goal Spread',
|
|
9749
|
+
name: 'Liechtenstein -2.5',
|
|
9750
|
+
is_main: false,
|
|
9751
|
+
selection: 'Liechtenstein',
|
|
9752
|
+
normalized_selection: 'liechtenstein',
|
|
9753
|
+
market_id: 'goal_spread',
|
|
9754
|
+
selection_line: null,
|
|
9755
|
+
player_id: null,
|
|
9756
|
+
team_id: '75B0884699D9',
|
|
9757
|
+
price: 2,
|
|
9758
|
+
timestamp: 1731890434.0742507,
|
|
9759
|
+
grouping_key: 'default:-2.5',
|
|
9760
|
+
points: -2.5,
|
|
9761
|
+
deep_link: {
|
|
9762
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9763
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9764
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9765
|
+
},
|
|
9766
|
+
limits: null,
|
|
9767
|
+
},
|
|
9768
|
+
{
|
|
9769
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:san_marino_+2_5',
|
|
9770
|
+
sportsbook: 'bovada',
|
|
9771
|
+
market: 'Goal Spread',
|
|
9772
|
+
name: 'San Marino +2.5',
|
|
9773
|
+
is_main: false,
|
|
9774
|
+
selection: 'San Marino',
|
|
9775
|
+
normalized_selection: 'san_marino',
|
|
9776
|
+
market_id: 'goal_spread',
|
|
9777
|
+
selection_line: null,
|
|
9778
|
+
player_id: null,
|
|
9779
|
+
team_id: 'CC6409213C00',
|
|
9780
|
+
price: 1.48,
|
|
9781
|
+
timestamp: 1731890434.0742507,
|
|
9782
|
+
grouping_key: 'default:-2.5',
|
|
9783
|
+
points: 2.5,
|
|
9784
|
+
deep_link: {
|
|
9785
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9786
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9787
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9788
|
+
},
|
|
9789
|
+
limits: null,
|
|
9790
|
+
},
|
|
9791
|
+
|
|
9792
|
+
{
|
|
9793
|
+
id: '34928-19103-2024-11-18:bovada:goal_spread:liechtenstein_-2_5',
|
|
9794
|
+
sportsbook: 'bovada',
|
|
9795
|
+
market: 'Goal Spread',
|
|
9796
|
+
name: 'Liechtenstein -2.5',
|
|
9797
|
+
is_main: false,
|
|
9798
|
+
selection: 'Liechtenstein',
|
|
9799
|
+
normalized_selection: 'liechtenstein',
|
|
9800
|
+
market_id: 'goal_spread',
|
|
9801
|
+
selection_line: null,
|
|
9802
|
+
player_id: null,
|
|
9803
|
+
team_id: '75B0884699D9',
|
|
9804
|
+
price: 2.1,
|
|
9805
|
+
timestamp: 1731890434.0742507,
|
|
9806
|
+
grouping_key: 'default:-2.5',
|
|
9807
|
+
points: -2.5,
|
|
9808
|
+
deep_link: {
|
|
9809
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9810
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9811
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9812
|
+
},
|
|
9813
|
+
limits: null,
|
|
9814
|
+
},
|
|
9815
|
+
|
|
9816
|
+
{
|
|
9817
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:san_marino_+2_5',
|
|
9818
|
+
sportsbook: 'DraftKings',
|
|
9819
|
+
market: 'Goal Spread',
|
|
9820
|
+
name: 'San Marino +3.5',
|
|
9821
|
+
is_main: false,
|
|
9822
|
+
selection: 'San Marino',
|
|
9823
|
+
normalized_selection: 'san_marino',
|
|
9824
|
+
market_id: 'goal_spread',
|
|
9825
|
+
selection_line: null,
|
|
9826
|
+
player_id: null,
|
|
9827
|
+
team_id: 'CC6409213C00',
|
|
9828
|
+
price: 1.46,
|
|
9829
|
+
timestamp: 1731890434.0742507,
|
|
9830
|
+
grouping_key: 'default:-3.5',
|
|
9831
|
+
points: 3.5,
|
|
9832
|
+
deep_link: {
|
|
9833
|
+
ios: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9834
|
+
android: 'dksb://sb/addbet/0HC77580013P250_3',
|
|
9835
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013P250_3',
|
|
9836
|
+
},
|
|
9837
|
+
limits: null,
|
|
9838
|
+
},
|
|
9839
|
+
|
|
9840
|
+
{
|
|
9841
|
+
id: '34928-19103-2024-11-18:draftkings:goal_spread:liechtenstein_-3_5',
|
|
9842
|
+
sportsbook: 'DraftKings',
|
|
9843
|
+
market: 'Goal Spread',
|
|
9844
|
+
name: 'Liechtenstein -3.5',
|
|
9845
|
+
is_main: false,
|
|
9846
|
+
selection: 'Liechtenstein',
|
|
9847
|
+
normalized_selection: 'liechtenstein',
|
|
9848
|
+
market_id: 'goal_spread',
|
|
9849
|
+
selection_line: null,
|
|
9850
|
+
player_id: null,
|
|
9851
|
+
team_id: '75B0884699D9',
|
|
9852
|
+
price: 2.5,
|
|
9853
|
+
timestamp: 1731890434.0742507,
|
|
9854
|
+
grouping_key: 'default:-3.5',
|
|
9855
|
+
points: -3.5,
|
|
9856
|
+
deep_link: {
|
|
9857
|
+
ios: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9858
|
+
android: 'dksb://sb/addbet/0HC77580013N250_1',
|
|
9859
|
+
desktop: 'https://sportsbook.draftkings.com/event/31382489?outcomes=0HC77580013N250_1',
|
|
9860
|
+
},
|
|
9861
|
+
limits: null,
|
|
9862
|
+
},
|
|
9863
|
+
],
|
|
9864
|
+
};
|