Matthew Tkachuk, McAvoy out, Kreider, Oettinger, Sanderson in for USA vs. Sweden

Having already punched a ticket to the 4 Nations Face-Off final, it looks like Matthew Tkachuk is sitting out Team USA’s penultimate game of the tournament.

Matthew Tkachuk, McAvoy out, Kreider, Oettinger, Sanderson in for USA vs. Sweden

Having already punched a ticket to the 4 Nations Face-Off final, it looks like Matthew Tkachuk is sitting out Team USA’s penultimate game of the tournament. 

The Florida Panthers forward did not participate in the team’s morning skate on Monday and watched from the side. Chris Kreider was tapped as his replacement.

The Americans play Sweden in the final game of the round-robin on Monday night.

Other lineup changes include a swap of defencemen, with Jake Sanderson coming in for Charlie McAvoy, and Jake Oettinger getting the nod to start in net. Connor Hellebuyck started for the USA in the previous two games of the tournament.

  • 4 Nations Face-Off on Sportsnet
  • 4 Nations Face-Off on Sportsnet

    The inaugural edition of the 4 Nations Face-Off is here with the top players from Canada, Sweden, Finland and the United States going head-to-head in the highly anticipated best-on-best event. Watch all the games on Sportsnet and Sportsnet+.

    Full broadcast schedule

Thanks to a win over Canada on Saturday, the U.S. became the first team to punch its ticket to the 4 Nations final.

Tkachuk suffered a lower-body injury in Saturday’s fight-filled win over Canada. The 27-year-old skated just 1:13 in the third period after testing out something that seemed to bother him. He appeared to tell assistant coach John Tortorella at one point that he “couldn’t go.” 

Asked about the injury following the game, Tkachuk brushed off any concern, but head coach Mike Sullivan told reporters on Saturday that the forward was still being evaluated. 

The elder Tkachuk has scored two goals and three points in this tournament, all of which came in the opening game against Finland. 

Brady Tkachuk, according to NHL.com, said his brother Matthew would be good to go for Thursday’s final.

Watch the game live on Sportsnet and Sportsnet+ starting at 8 p.m. ET / 5 p.m. PT.

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_d1750ff304828be79e98719e347ff916', '4nationsfaceoff', 'c85f49c9-fa9e-442a-9e9e-d491350e304c');