High-Net-Worth
Investing Research

Curated investing insights tailored to entrepreneur and high-earner investing strategies
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
Liquidity
August 21, 2026

[Summit Replay] AI Investing Masterclass Recording

Does your investing strategy take advantage of the current AI revolution? Are you missing out on the massive capital flows in the stock markets right now?
1
// --- consent gate (added 2026-08-06) --------------------------------------- // bmb_ft is non-essential storage: it may only be WRITTEN after the visitor grants the ANALYTICS // category. Termly's auto-blocker does not touch inline scripts, so this gate has to be explicit — // before it, first-touch UTMs were stored on a clean pre-consent visit (verified in-browser). function ftAnalyticsOk() { try { var T = window.Termly; if (T && typeof T.getConsentState === 'function') { var s = T.getConsentState(); if (s && typeof s === 'object') return s.analytics === true; } // Fallback for a CMP object that has not initialised yet: Termly persists the same answer here. var cache = JSON.parse(localStorage.getItem('TERMLY_API_CACHE') || 'null'); var entry = cache && cache.TERMLY_COOKIE_CONSENT; if (entry && entry.value && typeof entry.value === 'object') return entry.value.analytics === true; } catch (e) {} return false; } // First touch read off THIS page's URL. No storage involved, so it is safe pre-consent. function ftCapture() { var hasUtm = UTM.some(function (k) { return pageUtms.get(k); }); var ref = extRefHost(); if (!hasUtm && !ref) return null; var v = {}; UTM.forEach(function (k) { if (pageUtms.get(k)) v[k] = pageUtms.get(k); }); if (ref) v.ref = ref; return v; } var ft = null; if (ftAnalyticsOk()) { try { ft = JSON.parse(localStorage.getItem(FT_KEY) || 'null'); } catch (e) {} if (!ft) { ft = ftCapture(); if (ft) { try { localStorage.setItem(FT_KEY, JSON.stringify(ft)); } catch (e) {} } } } else { // No consent yet. Touch no storage — but the banner is usually accepted ON the landing page, so // watch for the grant and persist first touch then, from this same URL. Nothing is lost by waiting. try { localStorage.removeItem(FT_KEY); } catch (e) {} ft = ftCapture(); // in-memory only; the link decoration below still works for everyone var ftTries = 0; var ftPoll = setInterval(function () { if (++ftTries > 120) { clearInterval(ftPoll); return; } // give up quietly after 60s if (!ftAnalyticsOk()) return; clearInterval(ftPoll); var v = ftCapture(); if (v) { try { localStorage.setItem(FT_KEY, JSON.stringify(v)); } catch (e) {} } }, 500); } ft = ft || {}; function field(k) { return ft[k] || pageUtms.get(k) || ''; } var source = field('utm_source') || ft.ref || extRefHost() || 'direct'; var medium = field('utm_medium') || ((!field('utm_source') && (ft.ref || extRefHost())) ? 'referral' : ''); document.querySelectorAll('a[href*="typeform.com"]').forEach(function (link) { var tf = new URLSearchParams(); tf.set('page_source', pagePath); tf.set('utm_tz', timezone); tf.set('utm_source', source); if (medium) tf.set('utm_medium', medium); ['utm_campaign', 'utm_content', 'utm_term'].forEach(function (k) { var v = field(k); if (v) tf.set(k, v); }); link.href = link.href.split('#')[0] + '#' + tf.toString(); // keeps ?visitor_id from t.js, sets the hash }); });