← Back to Home
learnDetail.blogPost
⚑

Clean Energy Stocks: The June 2026 Green Investment Wave

New federal incentives, record solar deployments, and surging AI data-centre power demand drove a major re-rating of renewable energy stocks in June 2026.

Start Automating Free β†’

Want to automate this strategy? Try auto-Trading free β€” no credit card required.

Clean Energy Stocks: The June 2026 Green Investment Wave chart

Overview

What is Clean Energy Stocks: The June 2026 Green Investment Wave?

The clean energy sector experienced a significant re-rating in June 2026, with the Invesco Solar ETF (TAN) surging 21% and the iShares Global Clean Energy ETF (ICLN) rising 16% β€” both substantially outperforming the broader market. The catalyst was a confluence of policy, demand, and economics that many analysts described as a structural inflection point rather than a cyclical bounce.

On the policy front, the administration announced in early June an extension and expansion of the Investment Tax Credit (ITC) for utility-scale solar and wind projects, alongside new incentives for long-duration battery storage. The announcement removed a major near-term uncertainty that had been weighing on project financing decisions across the sector, and triggered a wave of large-scale renewable energy project announcements from utilities, independent power producers, and corporate buyers.

The demand side of the equation was equally compelling. The insatiable power appetite of AI data centres β€” now the fastest-growing component of US electricity demand β€” has created an urgent need for new generation capacity. The data centre build-out requires electricity that is available 24/7, which presents a challenge for intermittent renewables like solar and wind. This has accelerated interest in pairing renewable generation with grid-scale battery storage and, in some cases, has renewed serious conversations about the role of nuclear power in the AI-era energy mix.

Several technology companies β€” including major hyperscalers β€” signed record-breaking Power Purchase Agreements (PPAs) in June 2026, committing to buy renewable electricity from projects that haven't yet been built. These deals provide the long-term revenue visibility that allows developers to finance projects, and their size and structure were markedly more favourable to developers than PPAs signed in prior years β€” reflecting the tightening supply of shovel-ready renewable capacity relative to demand.

Solar installation figures released in June for Q1 2026 confirmed the sector's exceptional momentum. US utility-scale solar additions reached a quarterly record, with the pipeline of projects under development now stretching out five years. Module prices, which had been a headwind for economics in the early 2020s, have stabilised at levels that make large-scale solar among the cheapest form of new generation capacity in most US markets.

Within the clean energy universe, the June 2026 rally was not uniform. Pure-play solar developers and storage companies outperformed wind-focused names, which face somewhat longer permitting timelines. Offshore wind stocks, which had been battered by supply chain and financing challenges in 2024 and 2025, showed early signs of stabilisation but lagged the sector recovery.

For equity investors and systematic traders, the clean energy sector's June rally highlighted the importance of monitoring policy catalysts as binary event triggers. The sector's extreme sensitivity to regulatory announcements makes it well-suited to event-driven trading strategies, while its strong underlying growth fundamentals support longer-term momentum approaches.

How It Works in auto-Trading

Automate It

auto-Trading's event-driven module monitors legislative and regulatory news feeds for keyword triggers related to energy policy and ITC/PTC announcements. When a high-confidence policy catalyst is detected, the system can automatically scan the clean energy ETF universe for the highest-momentum names and generate an entry signal weighted by sector relative strength. Post-event trailing stops lock in gains as the re-rating unfolds.

Try Free β†’

Strategy Code

Pick a script below, copy it, and use it on your chart.

Pine Script (TradingView)

This is a TradingView Pine Script strategy example for this page concept. Paste it into the TradingView Pine Editor, add it to your chart, and run it in the Strategy Tester.

//@version=6
strategy("Clean Energy Stocks: The June 2026 Green Investment Wave", overlay=true)
momLen  = input.int(10,  "Momentum Length")
trendLen = input.int(50, "Trend EMA")
rsiLen  = input.int(14,  "RSI Length")
mom    = close - close[momLen]
ema50  = ta.ema(close, trendLen)
r      = ta.rsi(close, rsiLen)
// Buy when momentum is positive, price above trend EMA, RSI not overbought
longSignal  = mom > 0 and close > ema50 and r > 50 and r < 70
exitSignal  = mom < 0 or close < ema50
if longSignal
    strategy.entry("Mom", strategy.long)
if exitSignal
    strategy.close("Mom")
plot(ema50, "Trend EMA", color=color.orange)

ThinkScript (thinkorswim)

This is a thinkorswim ThinkScript strategy example for this page concept. Open thinkorswim, create a custom strategy, paste the script, and apply it to your chart.

input length = 10;
def mom = Momentum(length = length);
def trend = ExpAverage(close, 50);
def buySignal = mom > 0 and close > trend;
def sellSignal = mom < 0 or close < trend;
AddOrder(OrderType.BUY_AUTO, buySignal, close, 1, Color.GREEN, Color.GREEN, "Momentum Buy");
AddOrder(OrderType.SELL_AUTO, sellSignal, close, 1, Color.RED, Color.RED, "Momentum Exit");
plot Mom = mom;
Mom.SetDefaultColor(Color.CYAN);

Ready to automate Clean Energy Stocks: The June 2026 Green Investment Wave?

Join thousands of traders who use auto-Trading to execute this strategy automatically, 24/7.

Get Started Free β†’

All Strategies & Signals

Continue Learning

Trading Strategies

Trading Signals & Indicators