← Volver al inicio
learnDetail.blogPost
📋

S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives

The second quarter of 2026 delivered the strongest S&P 500 earnings growth in three years, with AI revenue lines finally moving the needle for mega-cap technology companies.

Empezar a automatizar gratis →

¿Quieres automatizar esta estrategia? Prueba auto-Trading gratis — sin tarjeta de crédito.

S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives chart

Descripción general

¿Qué es S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives?

The S&P 500 Q2 2026 earnings season, which kicked off in mid-July with the major banks and accelerated through the second half of the month, delivered the strongest aggregate earnings growth the index had seen since Q2 2023. With approximately 60% of S&P 500 companies having reported by the final week of July, blended earnings growth stood at 14.7% year-over-year — comfortably ahead of the 9.8% consensus estimate that analysts had set entering the season.

The standout narrative was the arrival of meaningful AI revenue monetisation at scale. For the past three years, markets had priced in enormous expectations for AI-driven revenue growth at the major technology platforms, but the actual reported figures had consistently been described as "coming soon" or "gaining traction." Q2 2026 marked a decisive turning point. Microsoft reported that its AI-powered Copilot products contributed over $12 billion in incremental quarterly revenue — double the level of Q2 2025. Alphabet disclosed that AI Overviews in Google Search had increased advertising revenue per query by 18%, adding approximately $4 billion in incremental quarterly revenue. Meta reported that its AI-driven content recommendation and ad-targeting systems had lifted advertiser return on investment to record levels, translating directly into accelerated ad spend on its platforms.

The technology sector as a whole reported earnings growth of 28.4% year-over-year in Q2 2026 — its best quarter since the pandemic-era digital acceleration of 2021. Margins expanded significantly as AI infrastructure investments made in 2024 and 2025 began to yield operating leverage: the cost of serving AI-generated content fell faster than the revenue it generated, a dynamic that management teams described as a structural rather than cyclical improvement.

Outside technology, the earnings picture was more mixed but broadly encouraging. The financial sector benefited from a steepening yield curve and a continued decline in loan loss provisions as credit quality remained robust despite lingering inflation. Major banks — JPMorgan Chase, Bank of America, and Wells Fargo — all reported net interest income growth and raised full-year guidance. Consumer discretionary companies posted solid but unspectacular results, with travel and hospitality outperforming while big-box retail grappled with inventory management challenges and softening demand for large-ticket items.

Healthcare was a notable sector-specific story in Q2 2026. Several large pharmaceutical companies reported strong results driven by GLP-1 drugs (obesity and diabetes treatments) — a category that has become one of the fastest-growing in pharmaceutical history. Novo Nordisk and Eli Lilly both exceeded earnings estimates by wide margins, and the healthcare sector's overall earnings growth of 16.2% for Q2 2026 significantly outperformed historical norms.

The energy sector was a drag on aggregate S&P 500 earnings. With oil prices hovering around $75 per barrel — down from the $90+ levels of mid-2025 — energy company profits fell approximately 12% year-over-year. However, the sector's declining weight in the S&P 500 (now below 4%) meant the impact on index-level earnings was limited.

For traders and portfolio managers, Q2 2026 earnings season reinforced several themes that had been building for months: the AI monetisation trade had arrived in earnest, financial sector leverage to yield-curve normalisation was playing out as expected, and healthcare's structural growth narrative around GLP-1 drugs remained compelling. Earnings-surprise momentum — buying companies that beat estimates and raise guidance — was a rewarding strategy throughout the reporting season.

Cómo funciona en auto-Trading

Automatízalo

auto-Trading's earnings-event module monitors the economic calendar for quarterly earnings releases and can automatically adjust position sizing in the 48 hours before and after a scheduled announcement. Post-earnings momentum strategies — designed to capture the directional drift that typically follows a large earnings surprise — can be configured to enter positions in the hours after a report and hold with a trailing stop until the momentum fades. The platform's sector-rotation engine can also overweight sectors where earnings revisions are trending positively.

Probar gratis →

Código de la estrategia

Elige un script abajo, copialo y usalo en tu grafico.

Pine Script (TradingView)

Este es un ejemplo de estrategia Pine Script de TradingView para el concepto de esta pagina. Pegalo en el Editor Pine de TradingView, agregalo al grafico y ejecutalo en Strategy Tester.

//@version=6
strategy("S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives", overlay=true)
// Detects pin bars and engulfing candles at key levels
atrLen  = input.int(14, "ATR Length")
lookback = input.int(20, "Swing Lookback")
atr = ta.atr(atrLen)
swingHigh = ta.highest(high, lookback)
swingLow  = ta.lowest(low,  lookback)
// Bullish pin bar: long lower wick, close near high, forms at/near swing low
lowerWick   = open - low
upperWick   = high - close
bodySize    = math.abs(close - open)
bullishPin  = lowerWick > 2 * bodySize and lowerWick > upperWick and low <= swingLow * 1.002
// Bearish engulfing at swing high
bearEngulf  = close < open and close < open[1] and open > close[1] and high >= swingHigh * 0.998
if bullishPin
    strategy.entry("PABuy", strategy.long, stop=low - atr * 0.5)
if bearEngulf
    strategy.close("PABuy")
plotshape(bullishPin, style=shape.triangleup,   location=location.belowbar, color=color.green, size=size.small, title="Pin Bar")
plotshape(bearEngulf, style=shape.triangledown, location=location.abovebar, color=color.red,   size=size.small, title="Bearish Engulf")

ThinkScript (thinkorswim)

Este es un ejemplo de estrategia ThinkScript de thinkorswim para el concepto de esta pagina. Abre thinkorswim, crea una estrategia personalizada, pega el script y aplicalo a tu grafico.

input atrLength = 14;
input swingLookback = 20;
def atrVal = ATR(atrLength);
def swingHigh = Highest(high, swingLookback);
def swingLow = Lowest(low, swingLookback);
def lowerWick = open - low;
def upperWick = high - close;
def bodySize = AbsValue(close - open);
def bullishPin = lowerWick > 2 * bodySize and lowerWick > upperWick and low <= swingLow * 1.002;
def bearEngulf = close < open and close < open[1] and open > close[1] and high >= swingHigh * 0.998;
AddOrder(OrderType.BUY_AUTO, bullishPin, close, 1, Color.GREEN, Color.GREEN, "S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives Buy");
AddOrder(OrderType.SELL_AUTO, bearEngulf, close, 1, Color.RED, Color.RED, "S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives Exit");
plot SwingHigh = swingHigh;
SwingHigh.SetDefaultColor(Color.RED);
plot SwingLow = swingLow;
SwingLow.SetDefaultColor(Color.GREEN);

¿Listo para automatizar S&P 500 Q2 2026 Earnings Season: Record Profits as AI Monetisation Arrives?

Únete a miles de traders que usan auto-Trading para ejecutar esta estrategia automáticamente, 24/7.

Empezar gratis →

Todas las estrategias y señales

Seguir aprendiendo

Estrategias de trading

Señales e indicadores de trading