Coinbase to Launch Stock Futures, Why This Is Big For Crypto

bitcoinistPublicado em 2026-03-21Última atualização em 2026-03-21

Resumo

Coinbase, a major US cryptocurrency exchange, has announced the launch of stock perpetual futures for non-US traders. This expansion is a significant step in its "Everything Exchange" strategy, moving beyond crypto into traditional assets like stocks and ETFs. The new derivatives allow eligible traders to speculate on the price of major tech stocks (Apple, Microsoft, etc.) and index ETFs (SPY, QQQ) with up to 10x and 20x leverage, respectively, all settled in USDC. These contracts never expire, enabling 24/7 trading. This launch integrates traditional assets with crypto on a single platform, offering new trading and hedging opportunities but also introducing higher risks of volatility and liquidations.

Coinbase, one of the largest cryptocurrency centralized exchanges (CEX) in the United States, has just announced the launching of stock perpetual futures for non-US traders.

Coinbase Expands Beyond All Borders

The CEX’s expansion, announced today in a blog post on its official website, isn’t just about stepping beyond U.S. borders to give global traders ongoing leveraged exposure via perpetual futures. It also marks Coinbase’s push beyond crypto into traditional assets, turning this rollout into a fresh bet on the growing trend toward tokenized stocks and 24/7 markets, driven by both TradFi and DeFi players. Recently, Europe’s largest asset manager Amundi announced the launching of a tokenized fund on Ethereum and Stellar, as covered by Bitcoinist just today.

Coinbase frames this launch as part of its broader “Everything Exchange” strategy, aiming to bring crypto, traditional assets, and new tokenized products into one venue.

Today, Coinbase expands its global derivatives offering with the launch of stock perpetual futures, becoming one of the first major centralized venues to offer this product. This launch strengthens Coinbase’s position in international derivatives and advances our long-term strategy of building the Everything Exchange where traders can access crypto, traditional, and emerging assets side by side.

Over the past year, Coinbase has laid the regulatory and product runway for this leap. It first rolled out crypto perpetual futures to U.S. retail traders under CFTC oversight in mid‐2025, then pushed derivatives into Europe via a MiFID II license obtained through its Bux acquisition, reaching 26 countries in an earlier March 2026 expansion that landed alongside its stock index futures debut.

A 24/7 US stock market

The CEX itself describes perpetual futures as “a type of derivative contract that enables traders to speculate on the price of an asset (...) without needing to buy or own the underlying asset itself.” Unlike standard futures, never expire, so traders can keep positions open indefinitely as long as they meet the margin requirements.

At launch, contracts cover the “Magnificent Seven” tech stocks: Apple, Microsoft, Alphabet, Amazon, NVIDIA, Meta Platforms, and Tesla. In certain permitted jurisdictions, perpetual futures on benchmark ETFs tracking, the S&P 500 (SPY) and the tech‐heavy Nasdaq‐100 (QQQ), are also available.

Leverage goes up to 10x on individual stock perpetuals and up to 20x on ETF perpetuals. All contracts are settled in USDC, Coinbase’s preferred stablecoin. The platform uses unified margin across perpetual and spot positions, allowing more capital-efficient portfolio management and risk offsets.

What This Means For Traders

Coinbase is methodically weaving spot, futures, and now stock‐linked perpetuals into a single, always‐on risk platform that changes how both retail and institutions express views across markets. For traders, that unlocks new basis trades between spot stocks and perpetuals, tighter cross‐asset plays between crypto and U.S. equities, and more complex hedging around macro events and earnings.

The flip side is obvious: deeper leverage stacks mean a higher risk of cascading liquidations and sharper, event‐driven volatility when the Fed speaks, data prints hit, or Big Tech reports.

At the moment of writing, BTC trades barely above the $70k level on the daily chart, marking a downside trend. Source: BTCUSD on Tradingview

Cover image from Perplexity, BTCUSD chart from Tradingview

Criptomoedas em alta

Perguntas relacionadas

QWhat new product has Coinbase announced for non-US traders?

ACoinbase has announced the launch of stock perpetual futures for non-US traders.

QWhich major tech stocks are covered by the new perpetual futures contracts?

AThe contracts cover the 'Magnificent Seven' tech stocks: Apple, Microsoft, Alphabet, Amazon, NVIDIA, Meta Platforms, and Tesla.

QWhat is the maximum leverage offered on individual stock perpetual futures?

ALeverage goes up to 10x on individual stock perpetual futures.

QIn what currency are all the new perpetual futures contracts settled?

AAll contracts are settled in USDC, which is Coinbase's preferred stablecoin.

QHow does Coinbase describe the broader strategy that this launch is a part of?

ACoinbase frames this launch as part of its broader 'Everything Exchange' strategy, aiming to bring crypto, traditional assets, and new tokenized products into one venue.

Leituras Relacionadas

Rubin Ultra Makes Major Cuts, Even Nvidia Can't Handle Memory Price Hikes?

NVIDIA's Rubin Ultra, the top-tier variant of the newly announced Rubin AI accelerators, has reportedly seen significant specification downgrades, according to an industry report from SemiAnalysis. Initially designed with four compute dies (4-die), the Rubin Ultra is now said to be reduced to a 2-die design. Key changes highlighted in the report include: * **No increase in peak theoretical compute performance**, remaining at 35 PFLOPs like the standard Rubin. * **Severe reduction in memory capacity** to 192GB using 8-Hi HBM stacks, which is less than the standard Rubin's 288GB using 12-Hi stacks. * **Negligible memory bandwidth improvement** of only 1 TB/s. * **Slightly higher chip-level power consumption**. * The **primary upgrade is a massive increase in scale-up interconnect capacity**, supporting connections for up to 576 GPUs via NVLink, compared to 72 for the standard Rubin. The report suggests the redesign is primarily a cost-optimization move driven by the sharp rise in HBM (High-Bandwidth Memory) prices. By reducing the expensive HBM content and shifting investment towards enhanced system-scale networking, NVIDIA aims to maintain the platform's value for large-scale AI training clusters while managing soaring material costs. The news reportedly triggered a sell-off in South Korean memory stocks, with SK Hynix and Samsung shares falling around 8%, as markets grew concerned that NVIDIA—a major HBM buyer—might be reducing its reliance on high-capacity memory, potentially capping future pricing power for memory makers.

Odaily星球日报Há 12m

Rubin Ultra Makes Major Cuts, Even Nvidia Can't Handle Memory Price Hikes?

Odaily星球日报Há 12m

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

This article introduces a novel training paradigm for generative models called Explorative Modeling (XM), which enables true end-to-end training. Traditionally, powerful generative models like autoregressive and diffusion models are not trained end-to-end. They are trained to predict a single small step but require iterative multi-step sampling for inference. This "exposure bias" leads to error accumulation and limits performance. The core challenge XM addresses is "mode blurring." In generative tasks, a single input (e.g., "generate a dog") corresponds to many valid outputs (multiple modes). Standard training objectives like reconstruction loss force the model to average these modes, producing unrealistic, blurry outputs. To avoid this, existing models break generation into many small, almost deterministic steps, sacrificing end-to-end training. XM tackles this by restructuring the training loop itself. Its key insight is to amplify "generative expressivity." For each training input, instead of generating one sample, the model generates K candidate outputs. Only the candidate closest to the real data is used for computing the loss and updating the model via backpropagation. This simple "best-of-K" mechanism is implemented as a short for-loop. By exploring multiple possibilities, the model learns to distribute its guesses across different modes rather than collapsing to their uninformative average. The paper demonstrates that "exploration" acts as a new, powerful scaling axis. Gains from XM increase with model size, data scale, and compute. Experiments show improvements in FID scores for image generation and significant efficiency gains, sometimes outperforming larger models without exploration. When pushed to the limit, XM enables fully single-step, end-to-end generative models. In robotics tasks, an "Explorative Policy" matched the performance of a 100-step Diffusion Policy with a single forward pass, drastically improving inference speed. While the best-of-K concept is not entirely new, the authors' contribution lies in formally understanding it as a direct method to boost generative expressivity without fragmenting the generation process. This work suggests that as models scale, enhancing exploration during training may become crucial for overcoming fundamental performance bottlenecks.

marsbitHá 1h

Can Generative Models Finally Be Trained End-to-End? The Core Is a For Loop

marsbitHá 1h

Trading

Spot

Artigos em Destaque

Como comprar ONE

Bem-vindo à HTX.com!Tornámos a compra de Harmony (ONE) simples e conveniente.Segue o nosso guia passo a passo para iniciar a tua jornada no mundo das criptos.Passo 1: cria a tua conta HTXUtiliza o teu e-mail ou número de telefone para te inscreveres numa conta gratuita na HTX.Desfruta de um processo de inscrição sem complicações e desbloqueia todas as funcionalidades.Obter a minha contaPasso 2: vai para Comprar Cripto e escolhe o teu método de pagamentoCartão de crédito/débito: usa o teu visa ou mastercard para comprar Harmony (ONE) instantaneamente.Saldo: usa os fundos da tua conta HTX para transacionar sem problemas.Terceiros: adicionamos métodos de pagamento populares, como Google Pay e Apple Pay, para aumentar a conveniência.P2P: transaciona diretamente com outros utilizadores na HTX.Mercado de balcão (OTC): oferecemos serviços personalizados e taxas de câmbio competitivas para os traders.Passo 3: armazena teu Harmony (ONE)Depois de comprar o teu Harmony (ONE), armazena-o na tua conta HTX.Alternativamente, podes enviá-lo para outro lugar através de transferência blockchain ou usá-lo para transacionar outras criptomoedas.Passo 4: transaciona Harmony (ONE)Transaciona facilmente Harmony (ONE) no mercado à vista da HTX.Acede simplesmente à tua conta, seleciona o teu par de trading, executa as tuas transações e monitoriza em tempo real.Oferecemos uma experiência de fácil utilização tanto para principiantes como para traders experientes.

414 Visualizações TotaisPublicado em {updateTime}Atualizado em 2026.06.02

Como comprar ONE

Discussões

Bem-vindo à Comunidade HTX. Aqui, pode manter-se informado sobre os mais recentes desenvolvimentos da plataforma e obter acesso a análises profissionais de mercado. As opiniões dos utilizadores sobre o preço de ONE (ONE) são apresentadas abaixo.

活动图片