Blue Jays recall RHP Braydon Fisher, option RHP Dillon Tate to triple-A

1 week ago 5

Rommie Analytics

The Toronto Blue Jays are making some slight adjustments to their bullpen ahead of a crucial AL East series.

Right-handed reliever Braydon Fisher was recalled from triple-A Buffalo, while fellow righty Dillon Tate was sent down ahead of Friday’s series opener against the New York Yankees, the team announced.

Fisher has been a steady option out of the bullpen for the Blue Jays this season, putting up a 3.03 ERA with 50 strikeouts in 41 appearances.

The 25-year-old was sent down to the Bisons on Aug. 20 to create a roster spot for starter Shane Bieber.

Watch Blue Jays vs. Yankees on Sportsnet
Watch Blue Jays vs. Yankees on Sportsnet

The Toronto Blue Jays begin a massive series against the New York Yankees on Friday at Yankee Stadium. Catch the action on Sportsnet or Sportsnet+ starting at 7 p.m. ET / 4 p.m. PT.

Broadcast schedule

Though he was in the midst of an impressive rookie year for the Blue Jays, Fisher had allowed four earned runs over four appearances prior to being sent down.

Fisher was acquired by the Blue Jays from the Los Angeles Dodgers last season in exchange for Cavan Biggio.

Tate, meanwhile, has made one appearance for Toronto since being recalled on Sept. 1 as part of MLB’s September roster expansion, striking out one batter in one scoreless inning to help the Blue Jays secure a 12-9 win over the Cincinnati Reds on Tuesday.

The 31-year-old has a 4.26 ERA with eight strikeouts in 6.1 innings pitched for the season.

The Blue Jays open up their series against the Yankees on Friday night, with first pitch at 7:10 p.m. ET / 4:10 p.m. PT on Sportsnet and Sportsnet+.

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_483003f127e1cb1d6bca8f1fa9421009', 'mlb', '9470c741-5569-4992-b258-e398d6518e3b');

Read Entire Article