Assets Invested in Crypto ETFs and ETPs Rise 359% in 2024 From $15B to $69B: ETFGI

Assets Invested in Crypto ETFs and ETPs Rise 359% in 2024 From $15B to $69B: ETFGI

Last updated:

March 28, 2024 14:06 EDT
| 1 min read

Listen to Article

00:00 /
00:00

window.addEventListener(‘DOMContentLoaded’, function() {
$(document).ready(function () {
let audio_player = $(‘#audio-player’);
let play_button = $(‘#play’);
let progress_bar = $(‘#progressbar’);
let time = $(‘#time’);
let mute_button = $(‘#mute’);
let volume_bar = $(‘#volume’);
let more_info = $(‘#more-info-box’);
let player = $(‘#player’)[0];
let duration = 0;
let volume = 0.5;
let end_time = $(‘#end-time’);
player.onloadedmetadata = function () {
duration = player.duration;
let minutes = parseInt(duration / 60, 10);
let seconds = parseInt(duration % 60);
end_time.text(minutes + ‘:’ + seconds);
progress_bar.progressbar(‘option’, {‘max’: duration});
};
player.load();
player.volume = 0.5;
player.addEventListener(‘timeupdate’, function () {
progress_bar.progressbar(‘value’, player.currentTime);
time.text(getTime(player.currentTime));
}, false);
volume_bar.progressbar({
value: player.volume * 100,
});

volume_bar.click(function (e) {
let info = getProgressBarClickInfo($(this), e);
volume_bar.progressbar(‘value’, info.value);
player.volume = info.value / info.max;
});

progress_bar.progressbar({
value: player.currentTime,
});

progress_bar.click(function (e) {
let info = getProgressBarClickInfo($(this), e);
player.currentTime = player.duration / info.max * info.value;
});

play_button.click(function () {
let audioFileDiv = document.getElementById(‘audio-link’);
let playerSource = document.getElementById(‘player-source’).getAttribute(‘src’);
let audio_text = $(‘#progressbar span’);
if (!playerSource) {
getAudioFile(audioFileDiv);
}
player[player.paused ? ‘play’ : ‘pause’]();
$(this).toggleClass(‘fa-play’, player.paused);
$(this).toggleClass(‘fa-pause’, !player.paused);
if (player.paused) {
audio_text.text(‘Listen to Article’).removeClass(‘listening’); //’Listen to article’
} else {
audio_text.text(‘Listening to article’).addClass(‘listening’); //’Listening to article’
}
});

mute_button.click(function () {
if (player.volume == 0) {
player.volume = volume;
} else {
volume = player.volume;
player.volume = 0;
}

volume_bar.progressbar(‘value’, player.volume * 100);

$(this).toggleClass(‘fa-volume-up’, player.volume != 0);
$(this).toggleClass(‘fa-volume-off’, player.volume == 0);
});

more_info.click(function () {
audio_player.animate({
height: (audio_player.height() == 50) ? 100 : 50
}, 1000);
});
});

function getTime(t) {
let m = ~~(t / 60), s = ~~(t % 60);
return (m < 10 ? ‘0’ + m : m) + ‘:’ + (s < 10 ? ‘0’ + s : s);
}

function getProgressBarClickInfo(progress_bar, e) {
let offset = progress_bar.offset();
let x = e.pageX – offset.left;
let y = e.pageY – offset.top;
let max = progress_bar.progressbar(‘option’, ‘max’);
let value = (x * max) / progress_bar.width();

return {x: x, y: y, max: max, value: value};
}

function getAudioFile(audioFileDiv){
document.getElementById(‘player-source’).src = audioFileDiv.innerHTML;
let player = document.getElementById(‘player’);
setTimeout(function(){
player.load();
player.play();
}, 150);
}
});

Assets Invested in Crypto ETFs and ETPs Rise 359% in 2024

ETFGI, an independent research firm, reports assets invested in cryptocurrency exchange traded funds (ETFs) and exchange traded products (ETPs) listed globally have reached a major new milestone of $69.39 billion at the end of February seeing a 358.9% from $15.12 billion at end of 2023. 

Crypto ETFs and ETPs listed globally have gathered net inflows of $9.20 billion during the month of February, bringing year-to-date net inflows to $36.76 billion, which is much higher than $179.02 million in net inflows at this point last year.

According to research firm ETFGI which was launched in 2012 by Deborah Fuhr who previously served as a managing director at BlackRock, this is the fifth month crypto ETFs and ETPs have seen net inflows.

SEC Approves Spot Bitcoin ETFs January



On January 11, the U.S. Securities and Exchange Commission approved eleven spot Bitcoin ETF applications, from BlackRock, Ark Investments and 21Shares, Fidelity, Invesco and VanEck — this in turn has caused a trading frenzy and triggered a bull market.  

BlackRock’s IBIT Sees $320M in Inflows



The BlackRock’s iShares Bitcoin Trust (IBIT) continues to gain traction in the cryptocurrency market, with recent data revealing a significant influx of $320 million in new investments.  This surge in inflows comes as BlackRock CEO Larry Fink has praised IBIT as the “fastest-growing ETF in the history of ETFs.”

In a recent interview with Fox Business, Fink expressed his surprise and satisfaction with IBIT’s performance. Fink emphasized that the trust’s success has surpassed his expectations, particularly during its first 11 weeks of trading.

Rise in Number of Issuers Launching Crypto ETFs and ETPs



In 2022, ETFGI reported assets of $12.4 billion were invested in 100 crypto ETFs or ETPs listed globally at the end of January. There has been a huge increase in the number of issuers launching cryptocurrency ETPs as more investors are doing due diligence on investing in cryptocurrency and some are starting to add some Bitcoin and other crypto exposures to their portfolios.

Read more from original website

Exit mobile version