The Washington Capitals are gearing up to take on the Montreal Canadiens in an exciting matchup at the Bell Centre on Saturday, October 21, 2023, at 7 p.m. ET. Hockey enthusiasts eagerly anticipate this game, which will be available for viewing on ESPN+ and Monumental Sports Network.
Washington Capitals preview
The Washington Capitals are looking to bounce back from a disappointing 6-1 loss to the Ottawa Senators in their previous game on the road. After a rocky start to the season with a 1-2-0 record, they are tied for seventh place in the Metropolitan Division, trailing the Flyers and Hurricanes by four points.
The Capitals have struggled offensively, ranking 32nd in the league with an average of one goal per game. Their defense hasn't fared much better, allowing an average of four goals per contest. They are tied for 30th in power play success (0%) and 25th in penalty killing (69.2%).
Montreal Canadiens preview
The Montreal Canadiens are coming off a 5-2 defeat at home against the Minnesota Wild. With a 1-1-1 record, they are in seventh place in the Atlantic Division, trailing the top spot held by Boston, Ottawa and Detroit by three points. Offensively, the Canadiens have shown more promise, ranking tied for 12th in the league with 3.33 goals per game.
However, they also have defensive struggles, allowing an average of four goals per contest, placing them 25th in goals against. Their power play has been relatively lackluster, with a 9.1% success rate, while their penalty-killing efficiency ranks 20th at 73.7%.
Washington Capitals projected lines
Forward
ALEX OVECHKIN | DYLAN STROME | MATTHEW PHILLIPS |
CONNOR MCMICHAEL | EVGENY KUZNETSOV | T.J. OSHIE |
SONNY MILANO | NICKLAS BACKSTROM | TOM WILSON |
BECK MALENSTYN | ALIAKSEI PROTAS | ANTHONY MANTHA |
Defenceman
RASMUS SANDIN | JOHN CARLSON |
MARTIN FEHERVARY | TREVOR VAN RIEMSDYK |
HARDY HAMAN AKTELL | TREVOR VAN RIEMSDYK |
Goalies
DARCY KUEMPER |
CHARLIE LINDGREN |
Montreal Canadiens projected lines
Forward
COLE CAUFIELD | NICK SUZUKI | RAFAEL HARVEY-PINARD |
TANNER PEARSON | ALEX NEWHOOK | JURAJ SLAFKOVSKY |
JOSH ANDERSON | SEAN MONAHAN | BRENDAN GALLAGHER |
JESSE YLONEN | JAKE EVANS | MICHAEL PEZZETTA |
Defenceman
MICHAEL MATHESON | DAVID SAVARD |
JUSTIN BARRON | JOHNATHAN KOVACEVIC |
ARBER XHEKAJ | JORDAN HARRIS |
Goalies
SAMUEL MONTEMBEAULT |
JAKE ALLEN |
Washington Capitals vs. Montreal Canadiens: Odds and predictions
The Washington Capitals enter this game as favorites with odds of -127, while the Montreal Canadiens are the underdogs with odds of +106. The over/under for this matchup is set at 6.5.
In the previous NHL season, the Capitals ranked 20th in the league with 253 goals scored. They also conceded 261 total goals, ranking 18th in the league. On the other hand, the Canadiens had the 26th-ranked offense with 227 goals and allowed 305 total goals, ranking 29th in the league.
The Capitals are the expected winners in this matchup. Will they rebound from their recent loss and secure a victory against the Montreal Canadiens? Hockey fans will be on the edge of their seats to find out.
Quick Links
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1716186, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1716186); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1716186) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1716186) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKGTmnqpu8KknLJnnprEtHnWmqqhoZ6cwbC6jJyYqaGklrm0edWsZKannqm%2Fpq3LZpqappGZtqa60maemqWVYr2zsdWinLBlnJ67pr%2BMqJudq12lv6awyJyroqeeqHpzfdKtZKibpGJ%2FcX6S