STOCK TITAN

Maple Rock and Xavier Majic Disclose 9.9% Ownership in Algoma Steel (ASTLW)

Filing Impact
(Neutral)
Filing Sentiment
(Neutral)
Form Type
SCHEDULE 13G

Rhea-AI Filing Summary

Maple Rock Capital Partners Inc. and Xavier Majic report beneficial ownership of 10,430,818 common shares of Algoma Steel Group Inc., representing 9.9% of the outstanding class based on 104,933,802 shares. The filing amends prior Schedule 13D disclosures and is submitted on Schedule 13G under Rule 13d-1(h), indicating the reporting persons state the shares are held in the ordinary course of business and not to change or influence control. Maple Rock Master Fund LP is identified as the client with economic interest; Mr. Majic is CIO of the adviser.

Positive

  • Disclosure of a 9.9% stake provides clarity on significant ownership in Algoma Steel
  • Conversion to Schedule 13G signals the holders assert passive, ordinary-course investment intent

Negative

  • Position size is material at 9.9% and could still affect market dynamics despite passive filing

Insights

TL;DR: A near-10% stake disclosed; filing as 13G signals passive intent but still represents substantial minority ownership.

The reporting persons hold 10,430,818 shares, or 9.9% of Algoma Steel's common shares, a size that can influence market perception and trading liquidity despite a declared passive position under Rule 13d-1(h). The amendment converting prior 13D disclosures to a 13G suggests a change from active strategic intentions to ordinary-course/ investment-adviser ownership. Investors should note the position size relative to total outstanding shares (104,933,802) as it remains a material minority stake in the capital structure.

0 && arr[0] !== '-' && arr[0] !== '' && arr[0] !== 'Positive take' && arr[0] !== 'Negative take'; } function updateFilingLabelsAndPosNeg(lang) { if (!filingUiLabels) return; var labels = filingUiLabels[lang] || filingUiLabels['en']; if (!labels) return; // Update summary title label var summaryTitle = container.querySelector('.title-container .title'); if (summaryTitle) summaryTitle.textContent = labels.summary; // Update positive/negative cards var posNeg = allPosNeg[lang]; var posDiv = document.getElementById('filing-card-positive'); var negDiv = document.getElementById('filing-card-negative'); if (posNeg) { var posData = posNeg.positive || []; var negData = posNeg.negative || []; var hasPosNeg = hasValidItems(posData) || hasValidItems(negData); if (posDiv) { posDiv.innerHTML = '

' + labels.positive + '

    ' + (hasValidItems(posData) ? posData.filter(Boolean).map(function(p) { return '
  • ' + decodeHTMLEntities(p) + '
  • '; }).join('') : '
  • ' + labels.none + '
  • ') + '
'; posDiv.classList.toggle('d-none', !hasPosNeg); } if (negDiv) { negDiv.innerHTML = '

' + labels.negative + '

    ' + (hasValidItems(negData) ? negData.filter(Boolean).map(function(n) { return '
  • ' + decodeHTMLEntities(n) + '
  • '; }).join('') : '
  • ' + labels.none + '
  • ') + '
'; negDiv.classList.toggle('d-none', !hasPosNeg); } } else { // No pos/neg data for this language — just update heading labels if (posDiv) { var posTitle = posDiv.querySelector('.title'); if (posTitle) posTitle.textContent = labels.positive; } if (negDiv) { var negTitle = negDiv.querySelector('.title'); if (negTitle) negTitle.textContent = labels.negative; } } } // Helper to decode HTML entities function decodeHTMLEntities(text) { if (typeof text !== 'string') return text; const textarea = document.createElement('textarea'); textarea.innerHTML = text; return textarea.value; } // Fetch translation via API (API can generate missing translations) function extractSummaryText(summaryPayload) { let summaryText = ''; if (typeof summaryPayload === 'string') { try { const parsed = JSON.parse(summaryPayload); if (typeof parsed === 'string') { summaryText = parsed; } else { summaryText = parsed?.s || parsed?.summary || ''; } } catch (e) { summaryText = summaryPayload; } } else if (summaryPayload && typeof summaryPayload === 'object') { summaryText = summaryPayload.s || summaryPayload.summary || ''; } return summaryText; } async function fetchTranslation(lang) { if (translationCache[lang]) { return translationCache[lang]; } const url = `https://api.stocktitan.net:10100/filings/getSummary/${filingId}/${lang}`; try { const response = await fetch(url); if (!response.ok) { return null; } const data = await response.json(); // Support both legacy payloads ({ error: 0, summary }) and current payloads ({ summary }). const hasErrorField = data && typeof data === 'object' && Object.prototype.hasOwnProperty.call(data, 'error'); if (hasErrorField && data.error !== 0) { return null; } const summaryText = extractSummaryText(data?.summary); if (summaryText) { translationCache[lang] = decodeHTMLEntities(summaryText); // Cache pos/neg from API response for label switching if (allPosNeg && (data.positive || data.negative)) { allPosNeg[lang] = { positive: data.positive || [], negative: data.negative || [] }; } return translationCache[lang]; } return null; } catch (error) { console.error('Error fetching filing translation:', error); return null; } } // Switch language function (allows fetching any valid language via API) async function switchLanguage(lang, skipSave = false) { if (!validLanguages.includes(lang)) { lang = 'en'; } if (lang === currentLang) return; const summaryDiv = document.getElementById('summary'); if (!summaryDiv) return; // Show loading state const originalContent = summaryDiv.innerHTML; summaryDiv.innerHTML = '
Loading translation...
'; // Fetch translation (API can generate if not in database) const translation = await fetchTranslation(lang); if (translation) { summaryDiv.innerHTML = translation; summaryDiv.setAttribute('lang', lang); currentLang = lang; // Update UI labels and positive/negative cards updateFilingLabelsAndPosNeg(lang); // Update active state in dropdown document.querySelectorAll('.dropdown-item.item-translation').forEach(item => { item.classList.toggle('active', item.dataset.lang === lang); }); // Save to localStorage localStorage.setItem('preferredLanguage', lang); // Save to server for logged-in users (skip if this is initial load to avoid unnecessary API call) if (!skipSave) { try { await fetch('/user/language-preference', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ language: lang }) }); } catch (e) { // Ignore errors for non-logged users } } } else { // Restore original content if fetch failed summaryDiv.innerHTML = originalContent; } } // Make switchLanguage available globally for this page window.switchFilingLanguage = switchLanguage; // Add click event listeners to dropdown items document.querySelectorAll('.dropdown-item.item-translation').forEach(item => { item.addEventListener('click', function(event) { event.preventDefault(); const lang = this.getAttribute('data-lang'); switchLanguage(lang); }); }); // On page load: check if we need to fetch user's preferred language document.addEventListener('DOMContentLoaded', () => { // If server already rendered the user's preferred language, check localStorage too. // Server returns 'en' default for anonymous users — localStorage holds their real preference. if (userPreferredLang === currentLang) { const storedLang = localStorage.getItem('preferredLanguage'); if (storedLang && storedLang !== currentLang && validLanguages.includes(storedLang)) { switchLanguage(storedLang, true); } return; } // User's server-side preference doesn't match displayed language // This happens when translation wasn't in DB - fetch via API if (validLanguages.includes(userPreferredLang)) { switchLanguage(userPreferredLang, true); return; } }); })();





Check the appropriate box to designate the rule pursuant to which this Schedule is filed:
Rule 13d-1(b)
Rule 13d-1(c)
Rule 13d-1(d)






SCHEDULE 13G





SCHEDULE 13G





SCHEDULE 13G



Maple Rock Capital Partners Inc.
Signature:/s/ Stephen D. Lane
Name/Title:Stephen D. Lane, Chief Financial Officer
Date:08/28/2025
Xavier Majic
Signature:/s/ Xavier Majic
Name/Title:Xavier Majic
Date:08/28/2025
Exhibit Information

Exhibit 1: Joint Filing Agreement, dated August 28, 2025

FAQ

What stake in Algoma Steel (ASTLW) do Maple Rock and Xavier Majic report?

They report beneficial ownership of 10,430,818 shares, equal to 9.9% of the 104,933,802 common shares outstanding used for calculation.

Why was a Schedule 13G filed instead of a Schedule 13D?

The reporting persons state they no longer hold the shares for the purpose of changing or influencing control and therefore amended prior Schedule 13D filings to file under Rule 13d-1(h) as a Schedule 13G.

Who holds the economic interest behind the reported shares?

Maple Rock Master Fund LP is identified as the client with the right to receive dividends or sale proceeds, with Maple Rock Capital Partners Inc. as manager and Mr. Majic serving as CIO.

Do the filers claim to be part of a group seeking control of Algoma Steel?

No. The filing states the Reporting Persons are filing jointly but expressly disclaim membership in a group and disclaim beneficial ownership except to the extent of pecuniary interest.

What date is associated with the determination to file Schedule 13G?

The Reporting Persons determined the change in intent and filed the Schedule 13G on August 28, 2025.