Urgent.News

the world's headlines, one feed

Editions

Tech

European software rally leaves next leg to long-only investors, Deutsche Bank says

European software rally leaves next leg to long-only investors, Deutsche Bank says

Deutsche Bank strategists have recently shifted their stance on European software stocks, ending their bullish outlook and advising investors to take a neutral position. Following a 13% rally in the sector, the analysts now believe that artificial intelligence advancements and data center limitations are altering market expectations. They suggest that unless investors have a strong conviction, a neutral approach may be the most prudent course of action.

Initially recommended as a hedge against semiconductor volatility in March, European software stocks had seen a 13% surge over the past month, outpacing the broader STOXX 600 index by 11 percentage points. However, this surge prompted Deutsche Bank to close their tactical overweight position, indicating that the next significant move would likely come from long-only investors.

The strategists highlighted several software companies with decreasing short interest, including SAP SE, Dassault Systemes SE, Hexagon AB, The Sage Group plc, Nemetschek SE, and Temenos AG. They caution that the evolving agentic AI paradigm could continue to impact sentiment until software vendors provide clearer indications of future growth.

Despite closing their directional overweight position, Deutsche Bank believes European software valuations still carry overly pessimistic long-term assumptions, with a projected terminal growth rate of around 2% from 2030 onward.

The analysts also noted market concerns regarding data center construction by hyperscalers, who may face increasing difficulties due to supply chain bottlenecks and waning local political support. However, Deutsche Bank remains optimistic about the software sector, viewing it as the more likely beneficiary in the evolving market landscape.

Written by urgent.news from Investing.com's reporting — not their text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at investing.com →

More in Tech

Safeguarding Your Systems: An Introduction to the Circuit Breaker Pattern

The circuit breaker pattern is a modern software design strategy used to detect failures and prevent an application from repeatedly executing an operation that is highly likely to fail.

  • Circuit breaker pattern prevents continuous execution of likely-failing operations
  • Acts as protective shield around external calls, halting traffic to broken services
  • Operates in Closed, Open, and Half-Open states to manage service recovery

Thinking and Decision Making: Cognitive Processes Explained

Introduction Every day you make thousands of decisions: what to eat, which route to take, whether a news headline is true. You probably think you're reasoning logically through each choice.

  • Decision-making relies on algorithms and heuristics
  • Heuristics are mental shortcuts, not always reliable
  • Common heuristics: availability and representativeness

Linux Memory Region Data Structures

The memory descriptor ( mm_struct ) maintains information about a process's address space (current memory it owns). One of its members is a linked list of Virtual Memory Areas (VMAs) , represented by…