AIII 40 Companies, 8 Pillars
AIII 40 Companies, 8 Pillars

AI Infrastructure index (AIII)

Tracking the companies building the infrastructure behind artificial intelligence.

Semiconductors • Networking • Data Centers • Power • Automation
Software • Cyber Security • Critical Minerals

What is AIII?

The AI Infrastructure Index (AIII) is a rules-based index designed to track the companies building the foundation of the AI economy.

While most investors focus on semiconductors and AI applications, AIII focuses on the eight interconnected pillars that together form the foundation of the AI economy.

Compute, Networking, Data Centers, Power, Industrial Automation, Software, Cybersecurity, Infrastructure
Compute, Networking, Data Centers, Power, Industrial Automation, Software, Cybersecurity, Infrastructure

Why Infrastructure?

Our Thesis

Most investors focus on the companies using artificial intelligence.AIII focuses on the companies enabling artificial intelligence.The index follows a structured methodology using transparent, published rules:✓ Eight AI infrastructure pillars
✓ Public listing, liquidity requirements
✓ Strategic, non-market-cap weighting
✓ Diversification weight caps
✓ Rigorous constituent audit framework
✓ Quarterly rebalancing

What Does AIII Own?

40 Companies. 8 Pillars.
One AI Infrastructure Index.

AIII allocates capital across eight foundational layers of the AI ecosystem, from semiconductors and networking to power generation and data centers.


Index Holdings & Allocation

How Capital Is Allocated

AIII is a rules-based index composed of 40 companies across eight infrastructure pillars that collectively support the global artificial intelligence ecosystem.AIII assigns target weights to each constituent based on its role within the AI infrastructure ecosystem, with weights reflecting the foundational technologies and services most critical to enabling artificial intelligence at scale.

AIII 40 Companies, 8 Pillars
AIII 40 Companies, 8 Pillars

Initial target allocations shown. Actual weights may vary over time based on market performance and index methodology.

Methodology

Index Construction, Maintenance & Oversight

Eligibility CriteriaThe AI Infrastructure Index (AIII) tracks publicly traded companies that provide the foundational technologies, services, and physical infrastructure required to develop, deploy, and scale artificial intelligence.
To be eligible for inclusion, a company must:
• Be listed on a major recognized exchange
• Maintain a minimum market capitalization of $1 billion
• Demonstrate average daily trading value of at least $10 million over the preceding 30 days
• Derive meaningful revenue or strategic activity from one or more of AIII's eight infrastructure pillars
• Demonstrate durable, long-term relevance to the AI infrastructure ecosystem
Once included, a constituent may remain in the index provided it continues to satisfy reduced retention thresholds:
• Minimum market capitalization of $750 million
• Average daily trading value of at least $5 million over the preceding 30 days
Weighting Methodology
AIII uses a strategic weighting approach rather than market-capitalization weighting. Constituent weights are determined based on each company's assessed importance within the AI infrastructure ecosystem, its competitive position within its assigned pillar, and its contribution to overall index diversification.
Target weights are established at each quarterly rebalance and are subject to the following constraints:
• No single constituent may exceed 8% of total index weight at the time of rebalancing.
• No single infrastructure pillar may exceed 30% of total index weight.
• Total index weight equals 100%.

Rebalancing ProcessThe index is reviewed quarterly.Scheduled reviews occur at the end of each calendar quarter:March 31
June 30
September 30
December 31
During each review, constituent eligibility, pillar allocations, and individual position weights are evaluated to ensure continued alignment with the index methodology.Rebalancing is triggered if:• An individual constituent exceeds 12% of total index weight. (allowed drift threshold)
• An infrastructure pillar exceeds 30% of total index weight.
If neither threshold is exceeded, no rebalancing action is required.Extraordinary changes may be made outside of scheduled reviews in the event of mergers, acquisitions, delistings, or other significant corporate actions.Index OversightAIII is maintained in accordance with its published methodology. The Index Administrator conducts a full review at each scheduled rebalance, including constituent eligibility, pillar assignments, and audit scoring. Any material changes to index construction rules, eligibility criteria, or methodology will be publicly disclosed on this website prior to taking effect.


AIII Live Index

AIII has been live since June 12, 2026. Results update every trading day.

AI Infrastructure Index
Live
AIII Index LevelLoading...
Inception Date
Jun 12, 2026
Base Level
100.00
Constituents
40
AIII
SPY
QQQ
(function() { var CSV_URL = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vS3ej-BGyozmQOkmpuIpwXChsAytCoHbTjVrR_AovAyr5UfCLYE0pcM2J0cVoCYoOJZq0TKEf50IB32/pub?gid=1263618198&single=true&output=csv'; var HISTORY_URL = 'https://docs.google.com/spreadsheets/d/e/2PACX-1vS3ej-BGyozmQOkmpuIpwXChsAytCoHbTjVrR_AovAyr5UfCLYE0pcM2J0cVoCYoOJZq0TKEf50IB32/pub?gid=1730726182&single=true&output=csv'; var SPY_BASE = 741.75, QQQ_BASE = 721.34; var HISTORY = [ { date: 'Jun 8', aiii: 100.55, spy: 739.22, qqq: 716.07 }, { date: 'Jun 9', aiii: 99.26, spy: 737.05, qqq: 707.83 }, { date: 'Jun 10', aiii: 96.38, spy: 725.43, qqq: 693.69 }, { date: 'Jun 11', aiii: 99.88, spy: 737.76, qqq: 717.12 }, { date: 'Jun 12', aiii: 100.85, spy: 741.75, qqq: 721.34 }, { date: 'Jun 13', aiii: 104.24, spy: 750.33, qqq: 729.86 }, { date: 'Jun 16', aiii: 100.00, spy: 750.33, qqq: 729.86 }, { date: 'Jun 17', aiii: 102.98, spy: 740.96, qqq: 722.51 }, ]; function formatDateLabel(dateStr) { var d = new Date(dateStr); if (isNaN(d)) return dateStr; return d.toLocaleDateString('en-US', { month: 'short', day: 'numeric' }); } function parseHistoryCSV(text) { var lines = text.trim().split('\n'); var headers = parseRow(lines[0]); var rows = []; for (var i = 1; i < lines.length; i++) { var vals = parseRow(lines[i]); if (!vals[0] || !vals[1] || isNaN(parseFloat(vals[1]))) continue; var row = {}; headers.forEach(function(h, j) { row[h.trim()] = vals[j] || ''; }); rows.push(row); } return rows; } function parseRow(line) { var result = [], current = '', inQ = false; for (var i = 0; i < line.length; i++) { var ch = line[i]; if (ch === '"') { inQ = !inQ; } else if (ch === ',' && !inQ) { result.push(current.trim()); current = ''; } else { current += ch; } } result.push(current.trim()); return result; } function parseCSV(text) { var lines = text.trim().split('\n'); var headers = parseRow(lines[1]); var dataRow = parseRow(lines[2]); var data = {}; headers.forEach(function(h, i) { data[h.trim()] = dataRow[i] || null; }); return data; } function fmt(n, d) { return parseFloat(n).toFixed(d); } var chart = null; function buildChart(historyRows) { var labels = historyRows.map(function(r) { return formatDateLabel(r['Date']); }); var aiiiData = historyRows.map(function(r) { return parseFloat(parseFloat(r['Index Level']).toFixed(2)); }); var spyData = historyRows.map(function(r) { var spy = parseFloat(r['SPY Close']); return isNaN(spy) ? null : parseFloat((spy / SPY_BASE * 100).toFixed(2)); }); var qqqData = historyRows.map(function(r) { var qqq = parseFloat(r['QQQ Close']); return isNaN(qqq) ? null : parseFloat((qqq / QQQ_BASE * 100).toFixed(2)); }); var ctx = document.getElementById('aiii-chart').getContext('2d'); if (chart) chart.destroy(); chart = new Chart(ctx, { type: 'line', data: { labels: labels, datasets: [ { label: 'AIII', data: aiiiData, borderColor: '#C9A84C', borderWidth: 2.5, pointRadius: 3, pointBackgroundColor: '#C9A84C', tension: 0.3, fill: false }, { label: 'SPY', data: spyData, borderColor: '#3D7A5C', borderWidth: 1.5, pointRadius: 2, pointBackgroundColor: '#3D7A5C', tension: 0.3, fill: false }, { label: 'QQQ', data: qqqData, borderColor: '#2E5FAC', borderWidth: 1.5, pointRadius: 2, pointBackgroundColor: '#2E5FAC', tension: 0.3, fill: false }, ] }, options: { responsive: true, maintainAspectRatio: false, interaction: { mode: 'index', intersect: false }, plugins: { legend: { display: false }, tooltip: { backgroundColor: '#0D2254', titleFont: { family: 'Poppins', size: 12 }, bodyFont: { family: 'JetBrains Mono', size: 12 }, padding: 10, callbacks: { label: function(c) { return ' ' + c.dataset.label + ': ' + c.parsed.y.toFixed(2); } } } }, scales: { x: { grid: { color: 'rgba(0,0,0,0.05)' }, ticks: { font: { family: 'Poppins', size: 11 }, color: '#5A6478' } }, y: { grid: { color: 'rgba(0,0,0,0.05)' }, ticks: { font: { family: 'JetBrains Mono', size: 11 }, color: '#5A6478', callback: function(v) { return v.toFixed(1); } }, title: { display: true, text: 'Indexed (Jun 12 = 100)', font: { family: 'Poppins', size: 10 }, color: '#8A91A3' } } } } }); } Promise.all([ fetch(CSV_URL + '&t=' + Date.now()), fetch(HISTORY_URL + '&t=' + Date.now()) ]).then(function(responses) { return Promise.all(responses.map(function(r) { return r.text(); })); }).then(function(texts) { var d = parseCSV(texts[0]); var level = parseFloat(d['Index Level']); var pts = parseFloat(d['Points Since Inception']); var daily = parseFloat((d['Daily Change'] || '').replace('%','')) / 100; var updated = d['Updated'] || ''; document.getElementById('aiii-level').textContent = fmt(level, 2); var ptsEl = document.getElementById('aiii-change'); ptsEl.textContent = (pts >= 0 ? '+' : '') + fmt(pts, 2) + ' pts since inception'; ptsEl.className = 'w-change ' + (pts >= 0 ? 'up' : 'down'); var dailySign = daily >= 0 ? '+' : ''; document.getElementById('aiii-updated').textContent = 'Updated ' + updated + ' · Daily: ' + dailySign + fmt(daily * 100, 2) + '%'; var historyRows = parseHistoryCSV(texts[1]); buildChart(historyRows); }).catch(function() { document.getElementById('aiii-updated').textContent = 'Data temporarily unavailable'; }); })();

AIII vs. Leading Benchmarks

The following backtest compares the AI Infrastructure Index (AIII) against the S&P 500 (SPY) and the Nasdaq-100 (QQQ). Results are based on the current AIII constituent list, target allocations, and published methodology. The analysis reflects threshold-based rebalancing, with quarterly reviews and rebalancing triggered only when diversification thresholds are exceeded.

In this one-year backtest, AIII far outperformed the S&P 500 and Nasdaq-100. While past performance does not guarantee future results, the analysis illustrates the potential benefits of a diversified, infrastructure-focused approach to artificial intelligence investing.

DisclaimerAIII is an independently maintained model index and is not an investment fund, ETF, or investment adviser. The index is provided for informational and educational purposes only and should not be considered investment advice. Past performance does not guarantee future results.


Key Advantages

Why AIII Is Different

Infrastructure-FirstMost AI products will change over time. The infrastructure supporting artificial intelligence will remain essential regardless of which applications ultimately win.


"The largest infrastructure buildout in human history."
— Jensen Huang, CEO, NVIDIA
Fox Business, January 2026"The market is starting to want to own the bullet makers, not the armies — data centers, industrials, materials, energy — they're all tied to the same thing." CapitalAI Daily
— Tom Lee, Co-Founder, Fundstrat Global Advisors
CNBC, February 2026


AIII — the AI Infrastructure Index — tracks the 40 companies building the physical and digital foundation of artificial intelligence. One year in, the results speak for themselves.

  • +94.5% · 1-Year Total Return

  • 3.08 · Sharpe Ratio

  • +68.8pp · vs. S&P 500


Sign up and receive The AI Infrastructure Investment Thesis — a full briefing on the index, the thesis, and why the infrastructure cycle has years left to run. Free.