العملة المشفرة Bernstein Predicts Over 1M BTC by 2033

Bernstein Predicts Over 1M BTC by 2033

nickmy2019@gmail.com
0

Bitcoin is no longer just a speculative asset—it’s becoming a core part of corporate strategies, and no company has embraced it quite like Strategy, formerly known as MicroStrategy. The firm has been aggressively accumulating Bitcoin, and according to a new report from Bernstein, its holdings could skyrocket to over 1 million BTC by 2033 if market conditions remain favorable.

A Massive Bitcoin Accumulation Plan

Currently, Strategy holds 506,137 BTC, already making it the largest corporate holder of Bitcoin. But Bernstein’s bullish forecast suggests the company could more than double that, reaching 1,013,000 BTC—equivalent to 5.8% of Bitcoin’s current circulating supply. This projection assumes Bitcoin will hit $200,000 by 2025, $500,000 by 2029, and eventually $1 million by 2033.

To fund this aggressive expansion, Strategy would likely rely on the capital markets, potentially increasing its debt from $11 billion to a staggering $100 billion while raising $84 billion in equity. The analysts believe that lower interest rates and strong investor demand would be key to making this plan feasible.

Where BTC Stands!

While Bitcoin is still below $90K, the best recovery level as of now is seen as the $90,000 level where the market will get interested again, with options market makers expected to influence price swings. Data from Deribit shows that market makers are “short gamma” at this strike, meaning they’ll need to buy when BTC rises and sell when it drops, adding to market turbulence. Despite this, BloFin’s Griffin Ardern suggests that there is a possibility of a bullish move ahead. With Friday’s options settlement, BTC could stay quite volatile around this key level.

See also  Ethereum Turns 11 With $148B Stablecoin Base But Cooler Mainnet Fees

What Happens if Bitcoin Slows Down?

Not everyone believes Bitcoin will keep going up without setbacks. If Bitcoin reaches a peak in 2025 and then starts a long decline, Strategy might stop buying more BTC and hold around 514,800 BTC, which is just 2.6% of the total supply. In this case, the company might even have to sell some of its Bitcoin to handle its growing debt, which would still climb but to a smaller amount—around $51 billion.

Investors Still See Growth Potential

Despite the risks, Bernstein remains confident in Strategy’s long-term position, maintaining an “outperform” rating and setting a $600 price target—representing a 75% upside from current levels. The firm’s valuation model applies a 2x EV/sales multiple to Strategy’s software segment and a 55% premium on its Bitcoin holdings, in line with its average market valuation since pivoting to Bitcoin in 2020.

Meanwhile, Strategy continues its Bitcoin buying spree. Between March 17 and March 23, the company added another 6,911 BTC for $584.1 million, further solidifying its commitment to Bitcoin as its primary treasury asset. Whether Bitcoin soars or faces challenges, Strategy is going all in on its bet that digital gold is here to stay.

Never Miss a Beat in the Crypto World!

Stay ahead with breaking news, expert analysis, and real-time updates on the latest trends in Bitcoin, altcoins, DeFi, NFTs, and more.

`;

let selectedSubscriptionsArray = selectedSubscriptionsString.split(‘,’);
let subscribedCategories = selectedSubscriptionsArray.map(subscription => subscription.split(‘_’)[0]);
let subscribedCategoriesString = subscribedCategories.join(‘, ‘);

subscribedmodal.innerHTML = subscribedPopupModal;
if (document.getElementById(‘selectidname’)) {
document.getElementById(‘selectidname’).textContent = subscribedCategoriesString;
}

document.querySelector(‘#subscribe-modal-design .modal’).style.display = ‘none’;
subscribedmodal.style.display = ‘block’;
subscribedmodal.classList.remove(‘hide’);
subscribedmodal.classList.add(‘show’);
document.getElementById(‘subscribe_’ + categoryid).style.display = ‘none’;
document.getElementById(‘unsubscribe_’ + categoryid).style.display = ‘block’;
var showDownloadReport = document.getElementById(‘download_report’);
if (showDownloadReport) {
showDownloadReport.style.display = ‘block’;
}

}

} catch (e) {
console.error(‘Error parsing response:’, e);
}
},

});
}

function closeModal(template_id) {
var modalId = template_id;
var modal = document.querySelector(‘#’ + modalId); // Using querySelector to find the modal

if (modal) {
modal.classList.add(‘hide’);
modal.classList.remove(‘show’);
setTimeout(function() {
modal.style.display = ‘none’;
}, 500);

} else {
console.warn(‘Modal not found:’, modalId);
}
}

function closeunsubscribemodal() {
var unsubscribemodal = document.querySelector(‘.unsubscribed-popup-modal .modal’);

if (unsubscribemodal) {
unsubscribemodal.classList.add(‘hide’);
unsubscribemodal.classList.remove(‘show’);
}
setTimeout(function() {
unsubscribemodal.style.display = ‘none’;
}, 500);
}

function closesubscribemodal() {
var subscribedmodal = document.querySelector(‘.subscribed-popup-modal .modal’);
setTimeout(function() {
subscribedmodal.style.display = ‘none’;
}, 500);
if (subscribedmodal) {
subscribedmodal.classList.add(‘hide’);
subscribedmodal.classList.remove(‘show’);
}
}

function withoutLoginClicked(withoutlogin_id) {

localStorage.setItem(‘subscribe_without_Login’, ‘true’);
localStorage.setItem(‘subscribe_clicked_id’, withoutlogin_id);
}

document.addEventListener(‘DOMContentLoaded’, function() {

const subscribewithoutData = localStorage.getItem(‘subscribe_without_Login’);
const subscribe_clicked_cat_id = localStorage.getItem(‘subscribe_clicked_id’);

// Function to get cookies
function getCookie(name) {
let value = “; ” + document.cookie;
let parts = value.split(“; ” + name + “=”);
if (parts.length == 2) return parts.pop().split(“;”).shift();
}

// Get user token from cookies
const userToken = getCookie(‘user_token’);

if (subscribewithoutData === ‘true’ && userToken) {
// Call the modal function with the category ID
subscribed_popupmodal(subscribe_clicked_cat_id);

// Remove the flag and category ID from localStorage
localStorage.removeItem(‘subscribe_without_Login’);
localStorage.removeItem(‘subscribe_clicked_id’);
}
});

/************************** update susbcriber content **************************** */
function initializeSubscriptionButton() {
var initialListItems = document.querySelectorAll(‘.subscription-options input[type=”checkbox”]’);
initialListItems.forEach(function(item) {
console.log(item.checked, ‘Initial Checkbox checked status’);
});

var listItems = document.querySelectorAll(‘.subscription-options li’);
if (listItems.length === 0) return;

var anyActive = false;
listItems.forEach(function(item) {
var checkbox = item.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
if (checkbox.checked) {
item.classList.add(‘active’);
anyActive = true; // Set anyActive to true
} else {
item.classList.remove(‘active’); // Remove ‘active’ class if checkbox is unchecked
}
}
});

}

function updateButtonText(anyActive) {
var subscribeButtonSpan = document.querySelector(‘.subscribe-submit .changeBtnText’);
if (subscribeButtonSpan) {
if (anyActive) {
subscribeButtonSpan.textContent=”Subscribe Now”;
} else {
subscribeButtonSpan.textContent=”Unsubscribe”;
}
}
}

See also  Margex Adds BIO, KAITO, METIS, PENGU and ZK to Its Platform

function updateSubscriptionButton() {
var listItems = document.querySelectorAll(‘.subscription-options li’);
if (listItems.length === 0) return;

var anyActive = false;
listItems.forEach(function(item) {
var checkbox = item.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
if (checkbox.checked) {
item.classList.add(‘active’);
anyActive = true; // Set anyActive to true
} else {
item.classList.remove(‘active’); // Remove ‘active’ class if checkbox is unchecked
}
}
});

// Update the button text based on whether any list item has the ‘active’ class
updateButtonText(anyActive);
}
document.addEventListener(‘click’, function(event) {
var clickedItem = event.target.closest(‘.subscription-options li’);
if (clickedItem) {
var checkbox = clickedItem.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
checkbox.checked = !checkbox.checked;
updateSubscriptionButton();
}
}
});

معلومات عنا

كن على اطلاع بأحدث الأخبار في عالم المال والأعمال، من خلال الاطلاع على أحدث الأخبار عن سوق الفوركس والأسهم والعملات المشفرة والأسواق العالمية. احصل على رؤى الخبراء واتجاهات السوق واستراتيجيات التداول والتحديثات الاقتصادية لاتخاذ قرارات مستنيرة. سواء كنت مستثمرًا أو تاجرًا أو متحمسًا للتمويل، فإننا نقدم تحديثات وتحليلات ونصائح في الوقت الفعلي لمساعدتك على التنقل في عالم المال الديناميكي، من الأسواق التقليدية إلى الأصول الرقمية مثل العملات المشفرة.

تواصل معنا

©2025 – جميع الحقوق محفوظة.