Back to Blog
Announcements

Trade.xyz Markets Are Live: 21 New HIP-3 Builder Perps

February 28, 20265 min read
Trade.xyz Markets Are Live: 21 New HIP-3 Builder Perps

The Largest HIP-3 Builder Gets Full Data Coverage

The largest HIP-3 builder markets just got full historical data coverage.

Trade.xyz leads adoption for HIP-3 perpetual futures on Hyperliquid. 0xArchive now archives every tick, fill, and order book update, with coverage beginning February 26, 2026.

What is Trade.xyz?

Trade.xyz is a HIP-3 builder on Hyperliquid deploying perpetual futures for traditional assets. Their offerings include instruments spanning equities, commodities, currencies, and a custom index. All trading 24/7 with Hyperliquid's on-chain settlement.

Markets Covered

Mega-Cap Equities

xyz:AAPL, xyz:AMZN, xyz:GOOGL, xyz:MSFT, xyz:NVDA, xyz:TSLA, xyz:TSM

High-Beta / Momentum

xyz:HOOD, xyz:INTC, xyz:MSTR, xyz:MU, xyz:PLTR, xyz:SKHX, xyz:SNDK

Commodities

xyz:GOLD, xyz:SILVER, xyz:CL (Crude Oil), xyz:COPPER

Forex & Other

xyz:EUR, xyz:CRCL (Circle), xyz:XYZ100 (XYZ U.S. 100 Index - top 100 non-financial U.S. equities, growth/tech-tilted)

Data Available

Full coverage from February 26th, for every market:

  • Order book snapshots - L2 depth at sub-second resolution
  • Trades - every fill with price, size, and side
  • Funding rates - rate snapshots with premium data, plus aggregated intervals (5m, 15m, 30m, 1h, 4h, 1d)
  • Open interest - OI with mark and oracle prices, plus aggregated intervals (5m, 15m, 30m, 1h, 4h, 1d)
  • Candles - OHLCV at 1m, 5m, 15m, 30m, 1h, 4h, 1d, 1w intervals
  • All accessible via 0xArchive's REST API, WebSocket replay, Python SDK, TypeScript SDK, OpenClaw Skill, and Claude MCP.

    Why This Matters for Builders

    21 markets across equities, commodities, and forex creates real analytical surface area:

  • Cross-asset correlation - How does xyz:NVDA funding diverge from xyz:GOLD during risk-off moves? Do commodities and equities decouple overnight?
  • Sector rotation signals - Track OI migration between xyz:TSLA, xyz:NVDA, and xyz:PLTR in real time. When momentum names see OI drop, where does it flow?
  • Funding arbitrage - Compare xyz funding rates against Kinetiq rates for overlapping markets (NVDA, GOOGL, GOLD, SILVER). Two builders, same underlying, different funding - that's an arb.
  • Macro event studies - FOMC, CPI, NFP - how do xyz:EUR, xyz:GOLD, and xyz:CL react vs equity perps? You now have tick-level data to study it.
  • The XYZ100 Index - A custom index across all xyz markets. Track it against km:US500 for builder-level divergence analysis.
  • Quick Start

    from oxarchive import Client
    client = Client(api_key="0xa_your_api_key")
    # List all HIP-3 instruments (Kinetiq + xyz)
    instruments = client.hyperliquid.hip3.instruments.list()
    for i in instruments:
    print(f"{i.coin}: ${i.mark_price:,.2f} OI: {i.open_interest:,.0f}")
    # xyz:TSLA 1-hour candles
    candles = client.hyperliquid.hip3.candles.history(
    "xyz:TSLA", interval="1h",
    start="2026-02-26", end="2026-02-28"
    )
    # xyz:GOLD funding rate history (aggregated hourly)
    funding = client.hyperliquid.hip3.funding.history(
    "xyz:GOLD", interval="1h",
    start="2026-02-26", end="2026-02-28"
    )
    # xyz:NVDA order book snapshot
    orderbook = client.hyperliquid.hip3.orderbook.get("xyz:NVDA")

    Questions or feedback? Let us know on X