Oilers’ Pickard remains day-to-day with injury, says coach
Oilers goalie Calvin Pickard remains sidelined with an injury as Edmonton looks to finish off its second-round playoff series with the Vegas Golden Knights.

Oilers goalie Calvin Pickard remains sidelined with an injury as Edmonton looks to finish off its second-round playoff series with the Vegas Golden Knights.
Pickard was not on the ice for morning skate ahead of Game 5 in Las Vegas on Wednesday, and head coach Kris Knoblauch says he remains “day to day.”
The 33-year-old netminder was injured during Game 2 on May 8, when Golden Knights forward Tomas Hertl landed on his left leg in the third period. Pickard finished the game but has not played since.
He had taken over as Edmonton’s starter in Game 3 of the first-round series against the L.A. Kings and backstopped the Oilers to six straight wins.
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_7c3f0f92886648df12d6f14cd4618c2c', 'NHL', '78b8cdd4-28e3-4b12-a72f-22081cb33291');
Regular-season starter Stuart Skinner has started the last two games, including a 3-0 shutout in Game 4 on Monday that gave Edmonton a 3-1 edge in the best-of-seven series.
Knoblauch says he will not make any changes to his lineup for Game 5, but that the team will “need everybody” as it pushes forward in the playoffs.