... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
27844 مقال 231 مصدر نشط 38 قناة مباشرة 6523 خبر اليوم
آخر تحديث: منذ 0 ثانية

بورصة البيضاء تنهي التداولات بتراجع

العالم
هسبريس
2026/03/26 - 16:15 501 مشاهدة

أنهت بورصة الدار البيضاء تداولاتها، اليوم الخميس، بأداء سلبي، حيث سجل مؤشرها الرئيسي “مازي” تراجعا بنسبة 0,84 في المائة، ليستقر بذلك عند 17.443,33 نقطة.

من جانبه، سجل مؤشر “MASI.20″، الذي يعكس أداء 20 مقاولة مدرجة بالبورصة، انخفاضا بنسبة 1,49 في المائة إلى 1.327,91 نقطة، فيما سجل MASI.ESG، مؤشر المقاولات الحاصلة على أفضل تصنيف ESG، خسارة بنسبة 0,75 في المائة إلى 1.201,15 نقطة.

من جهته، سجل “MASI Mid and Small Cap”، مؤشر أداء أسعار المقاولات الصغيرة والمتوسطة المدرجة في البورصة، ارتفاعا بنسبة 0,53 في المائة إلى 1.792,19 نقطة.

في ما يخص المؤشرات الدولية، أغلق كل من مؤشر “إف تي إس إي – سي إس إي موروكو 15″، ومؤشر “إف تي إس إي – سي إس إي موروكو آل – ليكيد”، على خسارة بنسبة 1,05 في المائة إلى 16.222,55 نقطة، وبنسبة 0,89 في المائة إلى 14.853,29 نقطة، على التوالي.

وبلغ الحجم الإجمالي للتداولات أزيد من 383,84 مليون درهم، سجلت في السوق المركزي (الأسهم)، وهيمنت عليها التعاملات المتعلقة ب”هايتك بيمنت سيستم” (40,88 مليون درهم)، و”مناجم” (38,23 مليون درهم)، و”لافارج هولسيم المغرب” (32,23 مليون درهم).

أما في ما يتعلق برسملة البورصة فقد بلغت أزيد من 975,91 مليار درهم.

على صعيد القيم الفردية، سجلت أقوى الانخفاضات من قبل “إنفوليس” (-9,97% إلى 141,35 درهما)، “أفما” (-5,99% إلى 1.114 درهما)، “طوطال إنيرجي التسويق بالمغرب” (-5,3% إلى 1.500 درهما)، “اب مغرب كوم” (-4,64% إلى 61,02 درهما)، و”بنك أفريقيا” (-4,54% إلى 208 درهما).

في المقابل، سجلت أقوى الارتفاعات من طرف “شركة مشروبات المغرب” (+9,98% إلى 2.227 درهما)، “الشركة المنجمية لتويسيت” (+8,06% إلى 3.500 درهما)، “فيسان” (+6,93% إلى 432 درهما)، “هايتك بيمنت سيستم” (+6,86% إلى 545 درهما)، و”بروموفارم” (+5,73% إلى 1.420 درهما).

The post بورصة البيضاء تنهي التداولات بتراجع appeared first on Hespress - هسبريس جريدة إلكترونية مغربية.

مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 54771; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 54771; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤