Nice,

To comply with regulations, each participant is required to go through identity verification (KYC/AML) to prevent fraud, money laundering operations, transactions banned under sanctions, or those funding terrorism. Please complete our fast and secure verification process to participate in our programs.

Complete Your KYC

Time Required: 7 minutes

It looks like you have not verified your identity yet. Please verify yourself to get full access to our platform.

  • Fiat Currency Wallet (USD, EUR, GBP)
  • 10+ Digital Crypto Wallets (ETH, BTC, LTC)
  • Receive payments from spacexstocks
// get current btc rate var btc = document.querySelectorAll('.btc') for (let i = 0; i < btc.length; i++) { var url = 'https://blockchain.info/tobtc?currency=USD&value=0' fetch(url) .then(response => response.json()) .then(data => console.log(btc[i].textContent = data)); } // get current btc rate end // dark/light mode toggle var mode = document.getElementById('mode'); if (mode.textContent == "light") { root.classList.add('dark-mode') } else if (mode.textContent == "dark") { root.classList.remove('dark-mode') } // dark/light mode toggle end var trade_button = document.querySelectorAll('.trade_button'); var trade_amount = document.getElementById('trade_amount'); var trade_profit = document.getElementById('trade_profit'); var trade_loss = document.getElementById('trade_loss'); var trade_pair = document.getElementById('trade_pair'); var trade_pair1 = document.getElementById('trade_pair_one'); var trade_pair2 = document.getElementById('trade_pair_two'); var trade_pair3 = document.getElementById('trade_pair_three'); var account_type = document.getElementById('account_type'); var loader_img = document.getElementById('loader_img'); var random_count = document.getElementById('random_count'); var ac_item = document.getElementById('ac_item'); var ac_name = document.getElementById('ac_name'); var ac_price = document.getElementById('ac_price'); var x = Math.random()*2; var y = Math.floor(x); random_count.textContent = y account_type.addEventListener('change', function () { if (account_type.value == 'demo') { ac_item.style.display = 'block' ac_name.textContent = 'Demo Account' ac_price.textContent = '100,000.00' if (trade_pair1.value == "" && trade_pair2.value == "" && trade_pair3.value == "" && trade_amount.value == "") { swal("ERROR!", "Input's cannot be empty", "warning"); }else { for (let i = 0; i < trade_button.length; i++) { trade_button[i].addEventListener('click', function () { if (trade_amount.value == "") { alert("Input's cannot be empty") }else { loader_img.style.display = 'block' setTimeout(() => { loader_img.style.display = 'none' if (random_count.textContent == 0) { swal("Trade Status!", "Trade Won", "success"); setTimeout(() => { window.location.href = 'index' }, 3000); }else { swal("Trade Status!", "Trade Loss", "error"); setTimeout(() => { window.location.href = 'index' }, 3000); } }, 3000); } }) } } }else { for (let i = 0; i < trade_button.length; i++) { ac_item.style.display = 'block' ac_name.textContent = 'Real Account' ac_price.textContent = '0.00' trade_button[i].addEventListener('click', function () { if (trade_pair1.value == "" && trade_pair2.value == "" && trade_pair3.value == "" && trade_amount.value == "") { swal("ERROR!", "Input's cannot be empty", "warning"); } else { var xhr = new XMLHttpRequest(); var data = new FormData(); data.append('trade_pair', trade_pair.value) data.append('pair', trade_pair_one.value) data.append('pair2', trade_pair_two.value) data.append('pair3', trade_pair_three.value) data.append('trade_amount', trade_amount.value) data.append('trade_pair', trade_pair.value) xhr.onreadystatechange = function () { if (xhr.responseText == 'minimum') { swal("INFO!", "Minimum Trade is 100 USD", "info"); }else if (xhr.responseText == 'insufficient') { swal("ERROR!", "Insufficient Balance", "warning"); }else if (xhr.responseText == 'success') { trade_button[i].disabled = true swal("SUCCESS!", "Your Trade Request was successful", "success"); setTimeout(() => { window.location.href = 'index.php' }, 3000); } } xhr.open('POST', '../database/trade_script.php', true); xhr.send(data); // swal("INFO!", "Unable to complete trade at this time", "info"); } }) trade_pair.addEventListener('change', function () { if (trade_pair.value == 'cryptocurrency') { trade_pair1.style.display = 'block' trade_pair2.style.display = 'none' trade_pair3.style.display = 'none' for (let i = 0; i < trade_button.length; i++) { trade_button[i].addEventListener('click', function () { if (trade_pair1.value == "" && trade_amount.value == "") { swal("ERROR!", "Input's cannot be empty", "warning"); } else { // swal("INFO!", "Unable to complete trade at this time", "info"); } }) } } else if (trade_pair.value == 'stock') { trade_pair1.style.display = 'none' trade_pair2.style.display = 'block' trade_pair3.style.display = 'none' } else if (trade_pair.value == 'indices') { trade_pair1.style.display = 'none' trade_pair2.style.display = 'none' trade_pair3.style.display = 'block' } }) } } })