Scherzer, Blue Jays offence look to bounce back vs. Diamondbacks

4 days ago 1

Rommie Analytics

The Toronto Blue Jays are searching for consistency as they look to turn things around in the second game of their series against the Arizona Diamondbacks.

With the team aiming to shake off a challenging start to April, they are turning to a veteran presence on the mound.

Max Scherzer (1-2, 9.58 ERA) will take the ball on Saturday evening to face Zac Gallen (1-1, 3.60 ERA) and a surging Diamondbacks squad (7:30 p.m. ET/ 4:30 p.m. PT on Sportsnet and Sportsnet+).

The three-time Cy Young winner is coming off a rocky stretch, allowing 10 earned runs across his last two outings and has been dealing with right forearm tendinitis.

Friday’s loss continued a tough stretch for Toronto, which has dropped five of its past six games and sits near the bottom of the American League standings with a 7-12 record.

Gallen looks to keep things rolling for an Arizona team that has won nine of its past 12, including a 6-3 victory in Friday’s opener.

Blue Jays on Sportsnet
Blue Jays on Sportsnet

Watch coverage of the reigning AL champion Toronto Blue Jays throughout the season on Sportsnet and Sportsnet+.

Blue Jays on Sportsnet

Despite that, Gallen has struggled historically against Toronto, posting a 9.35 ERA in two career starts.

Scherzer’s career started in Arizona after being selected 11th overall in the 2006 draft and has dominated in his meetings against his former club, going 9-0 with a 2.65 ERA in 12 career starts against the Diamondbacks.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_49623f7e3fa4f4a26bc0ccd6d15d63d2', 'MLB', '95d9893f-2f8e-414a-ac03-c837cf2d47af');

Read Entire Article