aicinvestors.com Open in urlscan Pro
3.223.103.237  Public Scan

Submitted URL: http://aicinvestors.com/
Effective URL: https://aicinvestors.com/
Submission: On February 24 via api from US — Scanned from US

Form analysis 2 forms found in the DOM

GET /

<form action="/" role="search" method="get" class="form search-form clearfix searchHidden" id="topSearchForm">
  <input name="s" type="text" class="form-control form-control-lg" placeholder="Search...">
  <button type="submit" value="Search" class="btn">Go</button>
</form>

POST https://thespeedyapp.com/signup

<form id="speedyTwo_signup_34905" class="speedyTwo_signup speedyTwo_signup_987 speedyTwo_signup_full speedyTwo_signup-email" action="https://thespeedyapp.com/signup" method="POST">
  <input type="hidden" name="key" value="cec0dbfdb730f718f39ee1df517c0cf2307c292ff0544bbe">
  <input type="hidden" value="987" name="boxId">
  <div id="speedyTwoFlex_987" class="speedyTwo-flex-container speedyTwo-email-input-full-css">
    <input type="email" class="form-control speedyTwo_email_input speedyTwo_email_input_full" id="speedyTwo_email_input_34905" required="" aria-describedby="emailHelp" name="email" style="float: left; " value="" placeholder=" Email">
    <input type="submit" class="speedyTwo_submit speedyTwo_submit_full" id="speedyTwo_submit_34905" value="Submit">
    <div class="form-group speedyTwo-disclaimer-form-full-css">
      <div class="speedyTwo-disclaimer-full-css">By submitting your email address, you will receive a free subscription to American Institute for Crypto Investors and occasional special offers from Money Map Press LLC and our affiliates. Unsubscribe
        at any time. Please read our <a href="https://moneymappress.com/privacy-policy/">Privacy Policy</a>.</div>
    </div>
  </div>
  <div class="speedyTwo_email_error" data-count="0"></div>
  <link rel="stylesheet" href="https://thespeedyapp.com/css/intlTelInput.css">
  <input type="hidden" value="" name="full_number" id="speedyTwo_full_number_34905">
  <input type="hidden" value="" name="sms_disclaimer" id="speedyTwo_sms_disclaimer_34905">
  <input type="hidden" value="" name="loadtime_disclaimer" id="speedyTwo_loadtime_disclaimer_34905">
  <input type="hidden" value="" name="dynamic_redirect" id="speedyTwo_dynamic_redirect_34905">
  <input type="hidden" value="" name="loaded">
  <input type="hidden" value="" name="seer_id">
  <input type="hidden" value="" name="referrer">
  <input type="hidden" value="redirect" name="after_signup" id="speedyTwo_after_signup_type_34905">
  <input type="hidden" value="08f9b3c4-4d14-4c82-92dd-2c52421349c8" name="mailing_id">
  <input type="hidden" value="aici_subscribe" id="speedyTwo_cookie_name">
  <input type="hidden" value="complete" id="speedyTwo_cookie_value">
  <div class="form-group speedyTwo-form-last">
    <label for="websiteform">Website</label>
    <input type="text" class="form-control website-form" id="websiteform" aria-describedby="website" name="website" style="max-width: 500px">
    <!-- <small id="emailHelp" class="form-text text-muted">Please Enter your email below</small> -->
  </div>
  <div class="form-group speedyTwo-form-last">
    <label for="messageform">Message</label>
    <input type="text" class="form-control message-form" id="messageform" aria-describedby="message" name="message" style="max-width: 500px">
    <!-- <small id="emailHelp" class="form-text text-muted">Please Enter your email below</small> -->
  </div>
  <!-- this used to be where the button would be FOR NON INLINE LAYOUT-->
  <script defer="">
    //set the initial order
    var maxW = window.matchMedia("(max-width: 1350px)");
    var flexContainers = document.querySelectorAll('*[id^="speedyTwoFlex_"] :nth-child(2)');
    // var flexContainersSms = document.querySelectorAll('*[id^="speedyTwoFlexSms_"] :nth-child(3)');
    //listen for width changes, assess order    
    maxW.addEventListener('change', function(width) {
      if (width.matches) {
        var flexContainers = document.querySelectorAll('*[id^="speedyTwoFlex_"] :nth-child(2)');
        // var flexContainersSms = document.querySelectorAll('*[id^="speedyTwoFlexSms_"] :nth-child(3)');
      }
    });
    jQuery.each(jQuery('.speedyTwo_signup'), function(key, value) {
      let randomNum = Math.floor(Math.random() * Math.floor(50000));
      jQuery('#speedyTwo_submit_').attr('id', 'speedyTwo_submit_' + randomNum);
      jQuery('#speedyTwo_email_input_').attr('id', 'speedyTwo_email_input_' + randomNum);
      jQuery('#speedyTwo_full_number_').attr('id', 'speedyTwo_full_number_' + randomNum);
      jQuery('#speedyTwo_sms_disclaimer_').attr('id', 'speedyTwo_sms_disclaimer_' + randomNum);
      jQuery('#speedyTwo_loadtime_disclaimer_').attr('id', 'speedyTwo_loadtime_disclaimer_' + randomNum);
      jQuery('#speedyTwo_signup_').attr('id', 'speedyTwo_signup_' + randomNum);
      jQuery('#speedyTwo_dynamic_redirect_').attr('id', 'speedyTwo_dynamic_redirect_' + randomNum);
      jQuery('#speedyTwo_after_signup_type_').attr('id', 'speedyTwo_after_signup_type_' + randomNum);
      jQuery('#speedyTwo_submit_' + boxid).on('click', function(e) {
        let error = itit.getValidationError();
        getValidationError(e, error, jQuery('#speedyTwo_phone_' + randomNum), randomNum);
      });
    });
    // get more info if the validation has failed e.g. too long/too short
    // NOTE that isPossibleNumberWithReason returns a i18n.phonenumbers.PhoneNumberUtil.ValidationResult
    function getValidationError(e, error, phone, randomNum) {
      if (error === intlTelInputUtils.validationError.INVALID_COUNTRY_CODE) {
        e.preventDefault();
        let phone_message = "This is not a valid country";
        jQuery('#speedyTwo_phone_error_' + randomNum).text(phone_message).data('count', '1');
        phone.css("border", "1px solid red");
      } else if (error === intlTelInputUtils.validationError.TOO_SHORT) {
        e.preventDefault();
        let phone_message = "The phone number is too short for the selected country";
        jQuery('#speedyTwo_phone_error_v' + randomNum).text(phone_message).data('count', '1');
        phone.css("border", "1px solid red");
      } else if (error === intlTelInputUtils.validationError.TOO_LONG) {
        e.preventDefault();
        let phone_message = "The phone number is too long for the selected country.";
        jQuery('#speedyTwo_phone_error_' + randomNum).text(phone_message).data('count', '1');
        phone.css("border", "1px solid red");
      } else if (error) {
        console.log(error);
        e.preventDefault();
        let phone_message = "This phone number is not valid.";
        jQuery('#speedyTwo_phone_error_' + randomNum).text(phone_message).data('count', '1');
        phone.css("border", "1px solid red");
      }
    }

    function gatherInformation(randomNum) {
      var loadtimeDisclaimer = jQuery('#speedyTwo_loadtime_disclaimer_' + randomNum);
      if (loadtimeDisclaimer.length > 0) {
        loadtimeDisclaimer.val(JSON.stringify(jQuery('#speedyTwo_sms_disclaimer_check_' + randomNum).parent().html()));
      }
      var loadTime = Math.floor(new Date().getTime() / 1000);
      jQuery('input[name="loaded"]').val(loadTime);
      jQuery('input[name="referrer"]').val(document.referrer);

      function readCookie(name) {
        var nameEQ = name + "=";
        var ca = document.cookie.split(';');
        for (var i = 0; i < ca.length; i++) {
          var c = ca[i];
          while (c.charAt(0) == ' ') c = c.substring(1, c.length);
          if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
        }
        return null;
      }
      var seerid = readCookie('seerid');
      if (seerid != undefined) {
        jQuery('input[name=seer_id]').val(seerid);
      }
    }
  </script>
</form>

Text Content

Go
Subscribe Login
 * Read
 * Watch
 * Learn
 * About

 * Welcome to AICI
 * Free Reports
 * Livestreams
 * Media
 * Sign Up for Text Alerts
 * Frequently Asked Questions
 * Log In


Login Subscribe
BTC: $ 23,130.0 (-2.99 %)
ETH: $ 1,593.39 (-3.26 %)
USDT: $ 1.00 (0.00 %)
USDC: $ 1.00 (0.01 %)
XRP: $ 0.3760 (-2.94 %)
ADA: $ 0.3653 (-4.15 %)
SOL: $ 22.85 (-4.07 %)
BUSD: $ 0.9999 (0.00 %)
DOT: $ 6.63 (-6.88 %)
DOGE: $ 0.08082 (-4.01 %)
AVAX: $ 18.44 (-6.11 %)
LINK: $ 7.56 (-2.90 %)
TRX: $ 0.06785 (-2.77 %)
XLM: $ 0.08871 (-2.30 %)
DAI: $ 0.9998 (-0.01 %)
SHIB: $ 0.00001259 (-3.30 %)
MATIC: $ 1.27 (-5.35 %)
AXS: $ 9.95 (-4.05 %)
UNI: $ 6.59 (-3.91 %)
LTC: $ 91.92 (-2.43 %)
BTC: $ 23,130.0 (-2.99 %)
ETH: $ 1,593.39 (-3.26 %)
USDT: $ 1.00 (0.00 %)
USDC: $ 1.00 (0.01 %)
XRP: $ 0.3760 (-2.94 %)
ADA: $ 0.3653 (-4.15 %)
SOL: $ 22.85 (-4.07 %)
BUSD: $ 0.9999 (0.00 %)
DOT: $ 6.63 (-6.88 %)
DOGE: $ 0.08082 (-4.01 %)
AVAX: $ 18.44 (-6.11 %)
LINK: $ 7.56 (-2.90 %)
TRX: $ 0.06785 (-2.77 %)
XLM: $ 0.08871 (-2.30 %)
DAI: $ 0.9998 (-0.01 %)
SHIB: $ 0.00001259 (-3.30 %)
MATIC: $ 1.27 (-5.35 %)
AXS: $ 9.95 (-4.05 %)
UNI: $ 6.59 (-3.91 %)
LTC: $ 91.92 (-2.43 %)
BTC: $ 23,130.0 (-2.99 %)
ETH: $ 1,593.39 (-3.26 %)
USDT: $ 1.00 (0.00 %)
USDC: $ 1.00 (0.01 %)
XRP: $ 0.3760 (-2.94 %)
ADA: $ 0.3653 (-4.15 %)
SOL: $ 22.85 (-4.07 %)
BUSD: $ 0.9999 (0.00 %)
DOT: $ 6.63 (-6.88 %)
DOGE: $ 0.08082 (-4.01 %)
AVAX: $ 18.44 (-6.11 %)
LINK: $ 7.56 (-2.90 %)
TRX: $ 0.06785 (-2.77 %)
XLM: $ 0.08871 (-2.30 %)
DAI: $ 0.9998 (-0.01 %)
SHIB: $ 0.00001259 (-3.30 %)
MATIC: $ 1.27 (-5.35 %)
AXS: $ 9.95 (-4.05 %)
UNI: $ 6.59 (-3.91 %)
LTC: $ 91.92 (-2.43 %)

SUBSCRIPTIONS

AICI Daily
 * Welcome to AICI
 * Free Reports
 * Livestreams
 * Media
 * Sign Up for Text Alerts
 * Frequently Asked Questions

AICI Daily


HERE’S THE BEST BUY IN CRYPTO RIGHT NOW


AICI Daily


THE SPOT BITCOIN ETF – HERE’S WHAT YOU NEED TO KNOW


AICI Daily


WHY A CRYPTO PROJECT’S TEAM IS CRITICALLY IMPORTANT


Post


THIS COULD BRING A BITCOIN BOTTOM


AICI Daily


THIS CRYPTO “FANCY FOOTWORK” WILL KEEP YOU IN THE GREEN


LATEST NEWS

 * AICI Daily
   
   
   HOW TO BE A GREAT CRYPTO INVESTOR
   
   February 21, 2023
   If I had a Bitcoin for every time I’ve heard, “But Niiiiiick, cryptocurrency
   has no real value“… Well, I’d have a lot more Bitcoins than I would
   otherwise. It’s a ridiculous argument, and the brutal truth is the folks
   who’ve...
   Read more
 * Crypto Profit Catalysts
   
   
   I CONVINCED THIS TOP STOCK TRADER THAT HE’S MISSING OUT ON AI
   
   February 17, 2023
   I set a new record on Money Morning LIVE this week. Executive Producer
   Garrett Baldwin and I went live so I could finally convince him (and you all)
   to start investing in artificial intelligence (AI). My Digital Heavyweights
   were in...
   Read more
 * AICI Daily
   
   
   PROTECT YOUR PORTFOLIO WHEN GOOD DIGITAL ASSETS GO BAD
   
   February 13, 2023
   The #1 most important factor in determining if your crypto portfolio is going
   to make or lose money is the quality of the assets you own. If you had a
   magic power to know exactly when the right moment to...
   Read more
 * AICI Daily
   
   
   AI CRYPTO IS STILL THE NO. 1 WAY TO PROFIT ON AI
   
   February 10, 2023
   When it comes to investing and trading, no option is 100% “safe.” You either
   risk your money in the market… or stay on the sidelines and risk having it
   wiped out by inflation. And now, with advanced artificial intelligence
   (AI)...
   Read more
 * AICI Daily
   
   
   SOLVING THIS ONE PROBLEM WOULD UNLOCK TRILLIONS IN CRYPTO PROFITS
   
   February 08, 2023
   I make bones about the fact that I don’t think human beings will be able to
   invest competitively ever again once artificially intelligent competition
   arrives on the market. A.I. competitors will be superior in every way;
   they’ll be unemotional, able...
   Read more
 * AICI Daily
   
   
   THIS INVESTING ADVICE IS BAD FOR CRYPTO INVESTORS
   
   February 06, 2023
   Diversifying your investments is a bad thing. You must be thinking I’ve gone
   crazy, right? I mean, diversification, that’s like Portfolio Management 101,
   isn’t it? It’s the most basic safety tip everyone gets if they want to start
   investing. But...
   Read more
 * AICI Daily
   
   
   THE SAFEST STRATEGY FOR LOCKING IN CRYPTO PROFITS
   
   February 01, 2023
   It’s no secret what kind of assets we’re looking for here when we choose new
   cryptos to invest in. The project team, its timing, the project “tokenomics,”
   and compelling use cases are some of the factors that produce an asset...
   Read more
 * AICI Daily
   
   
   THE ONE SKILL EVERYONE SHOULD HAVE IN AN AI-DOMINATED WORLD
   
   January 30, 2023
   In barely three months, artificial intelligence (A.I.) has made mindboggling
   progress. Just the other day, I created three weeks’ worth of lectures on
   cryptocurrency with the help of OpenAI’s ChatGPT, an A.I. “chatbot” that’s
   exploded in popularity – and intelligence...
   Read more
 * AICI Daily
   
   
   ONE CRYPTO TO BUY RIGHT AWAY AND ONE TO DUMP NOW
   
   January 27, 2023
   I’m not surprised when something happens which proves we’ve been right all
   along. Honestly, I’ve started expecting it. Still, it’s nice to have
   something to point to and say that I’m not just making all this up out of
   thin...
   Read more
 * AICI Daily
   
   
   AVOID THIS POPULAR TYPE OF CRYPTO AT ALL COSTS
   
   January 25, 2023
   It’s that time of year again: The United States of America is teetering on
   the cliff edge of economic collapse because grandstanding politicians want to
   use the national debt ceiling as a bargaining chip to go after some agenda
   that...
   Read more

Archives


FEATURED


 * 12 WAYS CRYPTO AND BLOCKCHAIN TECH WILL CHANGE THE WORLD FOR THE BETTER
   
   We’re at a pivotal moment in the history of cryptocurrency, where awareness
   is high and...
   Read more


 * THE COMPLETE CRYPTO INVESTOR’S GLOSSARY OF TERMS FROM A TO Z
   
   Editor’s Note: This resource was first created by American Institute for
   Crypto Investors advisory board member...
   Read more


 * DOLLAR-COST AVERAGING: WHY IT’S IDEALLY SUITED TO CRYPTO INVESTING (AND HOW
   TO USE IT TO YOUR ADVANTAGE)
   
   Dollar-cost averaging (DCA) is one of many tools crypto investors have
   borrowed from the world...
   Read more


 * HOW TO PROTECT YOUR CRYPTO: A COMPREHENSIVE GUIDE FOR INVESTORS
   
   If you’re already investing in cryptocurrency, or if you’re even thinking
   about getting started, then...
   Read more

CRYPTOCURRENCY 101: THE ULTIMATE BEGINNER'S GUIDE FOR NEW INVESTORS

Cryptocurrency represents one of the greatest investment opportunities we will
ever see in our lifetime. This crypto investing 101 guide will introduce you to
all the essentials you need to know as a new investor - how it works, why it has
value, and how you can get started today.

By submitting your email address, you will receive a free subscription to
American Institute for Crypto Investors and occasional special offers from Money
Map Press LLC and our affiliates. Unsubscribe at any time. Please read our
Privacy Policy.

Website
Message

TOP COINS (BY MARKET CAP)

Bitcoin (BTC)
$23,849.060
Ethereum (ETH)
$1,653.940
Tether (USDT)
$1.000
USD Coin (USDC)
$0.195
XRP (XRP)
$0.389
Cardano (ADA)
$0.382
Solana (SOL)
$23.980
Binance USD (BUSD)
$1.000
Polkadot (DOT)
$7.044
Dogecoin (DOGE)
$0.085
View All »

QUICK LINKS

Are you a new member? Read the FAQ.

Want to watch the livestream? Go here.

Read the archives here.


AICI TV
Weekly Coin Watchlist


EVERYTHING IS ON SALE: HERE ARE THE TOP CRYPTOS TO WATCH THIS WEEK

Weekly Coin Watchlist


THE 7 BIGGEST DISCOUNTS IN CRYPTO THIS WEEK AND MORE SURPRISE OPPORTUNITIES

Trending Stories


CRYPTO MEETS CANNABIS: POTCOIN PROMISES TO SOLVE A BIG PROBLEM FOR DISPENSARIES.
IS IT A BUY? (ANSWER INSIDE)

Crypto Investing How-Tos


CARDANO STAKING IS NOW AVAILABLE ON COINBASE – BUT FIRST, HERE’S A BETTER WAY

Featured Penny Coins


NEW SINGULARITYDAO PRICE PREDICTION REVEALS OPPORTUNITY TO 10X YOUR MONEY OR
MORE

Hyperadoption


THE NUMBER-ONE CRYPTO TO OWN TO PROTECT YOUR WEALTH DURING A CRISIS

Featured Penny Coins


CARDANO OR POLYGON: WHICH IS THE BETTER BUY? THE TRUTH MAY SURPRISE YOU

Protecting Your Crypto


STAY OUT OF TROUBLE WITH EASY WAYS TO HELP KEEP YOUR CRYPTO SAFE

Crypto Stocks


YOU USE COINBASE TO BUY CRYPTO, BUT IS COIN STOCK A BUY? FIND OUT

EXPLORE

 * What We’re About
 * Advisory Board
 * Whitelist Us
 * FAQs

LEGAL

 * Contact Us
 * Privacy Policy
 * Terms and Conditions
 * Do Not Sell or Share My Personal Information

CONTACT

 * Email
 * Contact Customer Service:
   Call 1-866-861-7924
   Call +1 443-578-3269 (International)
   Fax 410-622-3050
   
 * Contact VIP Services:
   Call 1-866-861-5224
   Call +1 443-339-9104 (International)
   
 * 1125 N Charles Street
   Baltimore, MD, 21201 USA
 * Get Help

© 2023 American Institute for Crypto Investors

LIVE
00:06 of 00:00Volume 0%

Press shift question mark to access a list of keyboard shortcuts
Keyboard ShortcutsEnabledDisabled
Play/PauseSPACE
Increase Volume↑
Decrease Volume↓
Seek Forward→
Seek Backward←
Captions On/Offc
Fullscreen/Exit Fullscreenf
Mute/Unmutem
Seek %0-9
Auto240p1080p720p480p240p
Live
00:08
00:00
00:00





 
Visit Money Morning Live



Chat with AICI Bot

Chat with AICI Bot

Send

Subscribe to our notifications for the latest news and updates. You can disable
anytime.


SubscribeLater