Oilers to ride with Pickard as Game 1 starter vs. Golden Knights
The Edmonton Oilers are sticking with the hot hand. Goaltender Calvin Pickard will start Tuesday’s Game 1 against the Vegas Golden Knights, head coach Kris Knoblauch told reporters.

The Edmonton Oilers are sticking with the hot hand.
Goaltender Calvin Pickard will start Tuesday’s Game 1 against the Vegas Golden Knights, head coach Kris Knoblauch told reporters.
Pickard, a backup for most of the season, replaced starter Stuart Skinner ahead of Game 3 in the opening round and led the Oilers to four straight wins and a series victory over the Los Angeles Kings.
The 33-year-old posted an .893 save percentage and 2.93 goals-against average across five first-round appearances.
In 36 regular-season games, Pickard recorded a .900 save percentage and 2.71 GAA.
Skinner, who led the Oilers to Game 7 of the Stanley Cup Final last season, struggled badly in his two starts, allowing 11 goals on 58 shots.
Live coverage of Tuesday’s Game 1 in Vegas is available on Sportsnet and Sportsnet+ beginning at 9:30 p.m. ET / 7:30 p.m. MT.
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 = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_75fd49ec29d97ef9630167b64e421f1e', 'NHL', 'bee51ba8-d7ee-4166-b5ea-a794b565bfb5');