Trading infrastructure is cracking under pressure. Markets move in microseconds, order volumes spike without warning, and regulatory requirements keep piling up. Yet most firms still run core systems on decade-old monolithic stacks — architectures designed when daily equity volumes were a fraction of today’s. Cloud-native trading platforms address that structural gap directly. This article breaks down what they actually are, what the market is testing right now, and why migration from legacy is no longer a strategic option but an operational necessity.
Financial Infrastructure Modernization: The Stakes
Financial institutions rethinking their technology backbone can explore relevant modernization services and trading infrastructure capabilities at https://dxc.com/industries/financial-services.
DXC Technology, which runs 17 of the world’s 20 largest banks and processes two-thirds of all US card transactions through its Hogan platform, has worked on exactly these kinds of transformation projects for over 45 years — and their capital markets practice covers the full stack from core banking modernization to real-time risk infrastructure.
Why Legacy Trading Systems Are Slowly Destroying the Firms That Rely on Them
Old-school trading platforms were built for a different world. Single-instance deployments. Vertical scaling only — throw more hardware at the box when load increases. No elasticity. No zero-downtime deployments. When order volumes spike during a Fed announcement or a geopolitical event, the system either holds or it doesn’t.
Citi’s 2020 incident — where it accidentally sent $900 million to Revlon creditors — became a reference case for what monolithic, interdependent systems look like when they fail. One UI misconfiguration. A cascade across the entire payment chain. The root cause was architectural, not just human error.
The deeper issue is deployment velocity. A single change to order routing logic requires redeploying the entire application. Testing cycles run weeks. Rollback is painful. And the more financial instruments get added — equities, derivatives, FX, crypto, structured products — the more brittle the codebase becomes.

Latency Is a Business Metric, Not a Technical One
Virtu Financial reported profitable trading days on 1,237 out of 1,238 trading days between 2009 and 2014. Their edge was sub-microsecond execution infrastructure. Not clever strategies alone. Engineering.
Cloud-native doesn’t automatically mean lower latency. But it means architecture can be tuned for it — rather than being fundamentally blocked by shared infrastructure constraints and static resource allocation that define monolithic deployments.
What the Market Is Testing Right Now
FPGA-Cloud Hybrid Deployments
FPGAs have long been the domain of elite HFT shops — firms like Jump Trading and IMC that can afford custom hardware. The new development in 2024–2025: FPGA-as-a-Service on cloud platforms.
AWS F1 instances ship with Xilinx FPGAs. Azure has FPGA nodes derived from Project Catapult. Firms are testing market data feed handlers on FPGAs hitting ~100ns execution latency — while running broader trading logic on commodity Kubernetes clusters in the same VPC. Not production-standard everywhere yet. But the prototypes are serious, and the cost curves are shifting.
LSEG on Azure, CME on Google Cloud
London Stock Exchange Group has been running trials of direct market access infrastructure hosted on Microsoft Azure. Results published in late 2023 showed P99 latency under 500 microseconds for specific workloads — competitive with traditional co-location for less latency-sensitive flows. Sound surprising? It is, a little.
CME Group went further. In partnership with Google Cloud, they announced a multi-year initiative to migrate market technology infrastructure to GCP, with Google Spanner — globally distributed, strongly consistent — handling real-time derivatives risk state. That’s a major exchange betting cloud-native infrastructure on mission-critical derivatives processing.
Nasdaq’s Completed Migration
Nasdaq migrated its North American options market (NOM) to AWS in 2023. Not a pilot. Production. An exchange running on cloud infrastructure, handling millions of options contracts daily. The architecture uses custom-built matching engines in AWS co-location zones, Kafka for market data distribution, and DynamoDB for session state. The rest of the industry took notice.
The Architecture That Makes It Work: Event Streaming and Microservices
Apache Kafka has become the default message bus for cloud-native trading platforms. The specific capabilities that drove adoption:
- Throughput: properly tuned clusters handle 10+ million messages per second
- Durability: messages persist to disk, partitioned across brokers, replicated across availability zones
- Replay: reconstruct order book state from any point in time — critical for regulatory audits and post-trade investigation
- Stream processing: Kafka Streams and ksqlDB run real-time aggregations (rolling VWAP, real-time P&L) directly on the event stream without pulling data into a separate system
A typical cloud-native order flow: client order hits the API gateway → passes through an order validation microservice → lands in a Kafka topic → gets consumed in parallel by risk check and pre-trade compliance services → only after both publish approval events does the smart order router receive the validated order and route to venue via FIX protocol.
Each service is stateless and horizontally scalable. If the risk check service crashes, messages queue in Kafka and processing resumes automatically on pod restart. No order loss. No manual intervention. No 2am pager.
Portfolio Risk in Real Time
Risk engines are where the interesting engineering lives. A portfolio delta calculation service subscribed to Kafka can compute aggregate option exposure across thousands of positions in under 5ms on modern cloud hardware. The same service scaled to 50 Kubernetes replicas during peak volatility handles 50x normal throughput without architectural changes — just more pods.
During the March 2020 volatility spike, firms with elastic cloud infrastructure scaled compute within minutes. Firms on fixed on-premise deployments queued orders and degraded service. That difference measured in real dollars.
AI and ML in the Execution Layer
Smart Order Routing With ML
Traditional Smart Order Routers use static rules: route to the venue with the tightest spread, split large orders to minimize market impact. Modern cloud-native platforms replace that with ML-based execution models that predict, in real time, fill probability at each connected venue.
Features fed into the model:
- Level 2 order book depth at each connected venue
- Historical fill rates by venue, time-of-day, and instrument class
- Current bid-ask spread versus 30-day rolling average
- Order cancellation rates — a proxy for quote-stuffing activity
- Intraday VWAP profiles for volume curve estimation
Jane Street, Jump Trading, and Optiver use proprietary versions of this approach. LightGBM and gradient-boosted tree models are the production standard — inference runs in under 1ms, which is what’s needed when the SOR decision cannot add meaningful latency to execution.
Cloud-native infrastructure makes this accessible to mid-tier buy-side firms that couldn’t previously staff a platform engineering team of this caliber. The compute is elastic; the deployment is containerized; the model can be updated and redeployed in hours rather than quarters.
Pre-Trade Surveillance and Anomaly Detection
MiFID II, Reg AT, and SEC Rule 15c3-5 all mandate pre-trade risk checks. Cloud-native platforms implement these as independent microservices using isolation forest or autoencoder models trained on historical order flow patterns.
A spoofing detection model flags orders exhibiting large size relative to typical market activity, placed far from the touch, and cancelled within 500ms. Repeated across sessions, the pattern triggers a compliance alert. The model runs per order in approximately 200 microseconds — fast enough to not measurably impact execution latency.
NLP-based communication surveillance for market manipulation signals — parsing Bloomberg chat, email, voice transcripts — is now deployed at tier-1 sell-side banks. Computationally expensive. Only viable on elastic cloud infrastructure.
Regulatory Compliance: Architecture-Level, Not Bolt-On
Most legacy migration projects fail here. Compliance needs to be a first-class architectural concern, not a module added later:
- Immutable audit trails: Every order state transition written to an append-only Kafka topic, archived to S3 with WORM configuration. Meets SEC Rule 17a-4 requirements.
- Automated regulatory reporting: MiFID II transaction reports, EMIR trade reports, and CAT submissions run as dedicated microservices consuming from the same event streams as trading logic.
- Real-time position limits: Flink or Kafka Streams stateful processors evaluate every order against current aggregate exposure in under 5ms.
- Data residency controls: Multi-region Kubernetes deployments with namespace-level network policies enforce GDPR and local regulatory requirements without manual configuration per deployment.
HSBC and Barclays have invested heavily in RegTech microservices architectures precisely because retrofitting compliance into monolithic systems proved unworkable at scale. Architecturally, the problem is that compliance logic needs to intercept and respond to every trade event — in a monolith, that creates tight coupling. In a microservices architecture, it’s just another consumer.
What Firms Are Actually Running in Production

The pilot-to-production gap is closing fast. Reference points:
- Murex MX.3 on cloud: Deployed at 250+ financial institutions globally, now supports cloud-native deployment on AWS and Azure — including cross-asset risk engine and real-time P&L.
- Finastra Fusion FX on Kubernetes: Used by tier-2 banks that need cloud-native event-driven architecture without staffing a bespoke platform team.
- Temenos Transact on AWS: Core banking and trading book management on certified AWS infrastructure.
- Orchestrade: A newer entrant in capital markets — cloud-native from day one. No legacy migration required. Pure microservices on Kubernetes.
The direction is clear. The remaining question for most firms is sequencing: how to migrate live trading books without disrupting client business during the transition.
Where This Goes in the Next Three Years
A few things already in motion:
- Quantum-resistant encryption: NIST finalized post-quantum cryptography standards in 2024. Trading platforms handling sensitive position and order data will need CRYSTALS-Kyber and CRYSTALS-Dilithium implementations within the next regulatory cycle.
- T+0 settlement infrastructure: DTCC’s Project Ion and the ECB’s DLT settlement trials are active. When same-day settlement becomes a regulatory requirement — and it will — real-time gross settlement logic at scale requires cloud-native infrastructure. There is no other architecture that delivers it.
- AI-native intraday risk oversight: ML models monitoring for regime changes — volatility clustering, liquidity bifurcation, correlated drawdowns across asset classes — are moving from research desks into production risk systems at tier-1 sell-side firms.
Well. The direction of travel is not subtle. Firms treating cloud-native as a checkbox — lift-and-shift monoliths to VMs, call it migration — will find themselves in the same architectural debt in five years. Firms building proper event-driven, microservices-based, observable platforms now accumulate a structural cost and agility advantage that compounds over time. The initial investment is real. But running a trading platform that can’t scale during volatility, can’t deploy without weekend blackouts, and requires a six-month project to add a new instrument class — that’s the more expensive option. The math is not close.