News

Bitcoin hits $68,000 (roughly Rs. 56 lakhs) after Joe Biden drops out of presidential race

Biden BTC

Bitcoin has been the big winner in the ongoing political drama that’s playing out in the US. After Joe Biden dropped out of the presidential race, the price of bitcoin rose on Monday as people became more optimistic about Donald Trump’s chances of winning. The world’s largest cryptocurrency is now looking at a price of around $70,000, which is a sign that the market is still growing.

After dropping out of the upcoming US Presidential race against Donald Trump over the weekend, current US President Joe Biden saw Bitcoin surge to $68,007 (Rs. 56.8 lakh) on international exchanges, marking the asset’s highest pricing in June and July so far. On Indian exchanges like BuyUCoin, Bitcoin is currently trading at $68,080 (approximately Rs. 56.9 lakh).

However, the overall crypto chart didn’t reflect the rise in BTC prices and showed signs of increased volatility, with altcoins moving in a mixed direction.

Bitcoin has bounced back to the $68,000 mark as market participants show optimism about Donald Trump’s potential election win. BTC is now looking at the $70,000 mark, which is a sign that the market is still feeling positive, according to Edul Patel, CEO of Mudrex, speaking to Gadgets360.

Ether also saw a notable increase in its price from last week, coming in on Monday. Ether is the second most valuable cryptocurrency after Bitcoin. It’s currently trading at $3,512 (approximately Rs. 2.93 lakh) on international exchanges like CoinMarketCap. Meanwhile, the price of ETH in India is currently at $3,685 (approximately Rs. 3.08 lakh).

With Ether ETFs set to start trading soon, Ether is looking good. To keep the bullish momentum going, ETH needs to clear the $3,650 mark and stay above $3,360. With lots of big events happening this week, we can expect the market to be pretty volatile, according to the CoinDCX market desk.where Bitcoin has surged following political developments in the U.S., highlights the influence that global events can have on cryptocurrency markets. As Bitcoin approaches the $70,000 mark, investors and traders are closely watching for any further movements that could indicate sustained growth or a potential correction.

Regarding Ethereum (ETH), the anticipation of Ether ETFs starting to trade soon could be contributing to the bullish sentiment around the cryptocurrency. If ETH can break through the 3,650levelandmaintainsupportabove3,360, it may see continued upward pressure.

For those interested in Bitcoin mining, the Antminer S21 Pro is one of the latest models from Bitmain, a leading manufacturer of cryptocurrency mining hardware. The S21 Pro model is designed to provide high hash rates while maintaining efficiency, making it an attractive option for miners seeking to maximize their returns.

To explore the Bitmain Antminer S21 Pro further, you can visit LeedMiner for detailed product specifications, availability, and pricing information. Buy it now!

Leave a Comment

Your email address will not be published. Required fields are marked *

'); printWindow.document.write(`
Logo
${currentDate}

Asic Miner List

Leedminer is your one-stop shop for all the latest ASIC miner earnings updates!

We’ve got a daily price table featuring real-time earnings updates for all known ASIC miners, with data refreshed every minute to maximize your profit insights.
`); const printTable = $('').append(''); const removeColumns = [0, 7, 6, 8]; // 构建新的表头 $('#miner-info-table thead tr th').each(function(index) { if (!removeColumns.includes(index)) { printTable.find('thead tr').append($(this).clone()); } }); // 追加所有已选择的行 selectedRows.each(function() { const clonedRow = $(this).clone(); clonedRow.find('td').each(function(index) { if (removeColumns.includes(index)) { $(this).remove(); } }); printTable.find('tbody').append(clonedRow); }); printWindow.document.write(printTable[0].outerHTML); printWindow.document.write(``); printWindow.document.write(''); printWindow.document.close(); printWindow.focus(); // 调用打印功能,允许用户选择打印机或保存为 PDF printWindow.print(); }); }); // Filter table function function filterTable() { const selectedCoins = $('.coin-button.active').map(function() { return $(this).data('coin'); }).get(); const brandFilter = $('#brand-select').val(); const searchInput = $('#search-input').val().toLowerCase(); $('#miner-info-body tr').each(function() { const $row = $(this); const coin = $row.data('coin'); const brand = $row.data('brand'); // 检查所有单元格 let rowVisible = false; // 追踪行是否可见 // 遍历每个单元格,检查是否包含搜索输入 $row.find('td').each(function() { const cellText = $(this).text().toLowerCase(); if (cellText.includes(searchInput)) { rowVisible = true; // 如果找到匹配项,标记为可见 } }); // Match conditions const matchesCoin = selectedCoins.length === 0 || selectedCoins.includes(coin); const matchesBrand = brandFilter === 'all' || brandFilter === brand; // 最终决定行的可见性 $row.toggle(rowVisible && matchesCoin && matchesBrand); }); } // Event bindings for coin buttons $('.coin-button').on('click', function() { $(this).toggleClass('active'); if ($(this).attr('id') === 'all-coins') { $('.coin-button').not(this).removeClass('active'); } else { $('#all-coins').removeClass('active'); } filterTable(); }); // Brand select and search input events $('#brand-select').on('change', filterTable); $('#search-input').on('input', filterTable); // Clear filters button $('#clear-filters').on('click', function() { $('.coin-button').removeClass('active'); $('#brand-select').val('all'); $('#search-input').val(''); filterTable(); }); // Refresh daily income calculations function refreshDailyIncome() { const electricityCost = parseFloat($('#electricity-price').val()) || 0; $('#miner-info-body tr').each(function() { const $row = $(this); const power = parseFloat($row.data('power')) || 0; // Power consumption const minerPrice = parseFloat($row.data('price').replace(/,/g, '')) || 0; // Miner price const dailyIncome = parseFloat($row.data('daily-income')) || 0; // Daily income const miningCoins = parseFloat($row.data('mining-coins')) || 1; // Mining coins const dailyPowerCost = (power / 1000) * 24 * electricityCost; // Calculate daily power cost const netProfit = dailyIncome - dailyPowerCost; // Calculate net profit // Update displayed values $row.find('.daily-electricity-cost').text(`$${dailyPowerCost.toFixed(2)}`); $row.find('.net-profit').text(`$${netProfit.toFixed(2)}/day`); // Calculate and update shutdown price const shutdownPrice = miningCoins > 0 ? (dailyPowerCost / miningCoins).toFixed(2) : 'N/A'; $row.find('.shutdown-price').text(`$${shutdownPrice}`); // Update shutdown price correctly // Calculate ROI based on miner price and net profit const roi = netProfit > 0 ? (minerPrice / netProfit).toFixed(0) : 'N/A'; $row.find('.roi').text(roi); // Update ROI }); table.draw(); } // Update profitability colors based on net profit function updateProfitabilityColors() { $('#miner-info-body tr').each(function() { const netProfitText = $(this).find('.net-profit').text(); const netProfit = parseFloat(netProfitText.replace('$', '').replace('/day', '').trim()); let textColor; if (netProfit < 0) { textColor = '#e06666'; // Deep red } else if (netProfit < 5) { textColor = '#ffb84d'; // Deep orange } else if (netProfit < 10) { textColor = '#e6e600'; // Deep yellow } else if (netProfit < 100) { textColor = '#00ad0f'; // Bright green } else { textColor = '#009900'; // Default green } $(this).find('.net-profit').css('color', textColor); }); } // Initial color update for net profit updateProfitabilityColors(); // Event bindings for filtering and updating $('#electricity-price').on('input', function() { refreshDailyIncome(); updateProfitabilityColors(); }); // Initial updates table.on('draw', updateProfitabilityColors); refreshDailyIncome(); // Initial refresh // Set interval for refreshing income every 60 seconds setInterval(refreshDailyIncome, 60000); });