본문으로 건너뛰기

Listing Arbitrage

What it is

Korean retail investors disproportionately trade on Upbit and Bithumb, and these venues' KRW-pair listings act as price-moving events. When a token already trading on global exchanges (Binance, OKX, etc.) is newly listed on a Korean exchange, the KRW order book often opens at a significant premium to the global price — sometimes 10–100% above the global mark — before settling within minutes to hours. The Korean-language term for the pattern is 상장빔 ("listing beam") and the trade around it is sometimes called 원상따리 (chasing the won-listing).

The trade: pre-position the token on a wallet you can deposit to Upbit/Bithumb, monitor the listing announcement feed, deposit and sell into the opening KRW liquidity before the premium decays. Alternatively, run the inverse: short global perp the moment the listing premium appears, expecting convergence.

When it works

  • The token is already withdrawable from a global venue so you can pre-stage inventory before the announcement.
  • Deposits on the Korean side open at or near the listing moment (some listings have a "trade-only" window where deposits lag).
  • The asset has low free float on the Korean side at open — that's what creates the gap.
  • You can act inside minutes. Premium half-life is usually 5–60 minutes; major-cap listings sometimes converge in seconds.

The trade structurally fails when the Korean exchange opens deposits hours before trading (price has already converged) or when the listing is a re-listing/network swap (no excitement premium).

Data you need

API recipe

Monitor the listing announcement feed and filter by Korean exchange:

curl -G 'https://api.datamaxiplus.com/api/v1/cex/announcements' \
-H 'X-DTMX-APIKEY: '"$YOUR_API_KEY" \
--data-urlencode 'exchange=upbit,bithumb' \
--data-urlencode 'category=listing' \
--data-urlencode 'sort=desc' \
--data-urlencode 'limit=20'

For live trading the REST poll is too slow — subscribe to the listing WebSocket:

websocat 'wss://api.datamaxiplus.com/ws/v1/announcement/listing' \
-H 'X-DTMX-APIKEY: '"$YOUR_API_KEY"

Risks & caveats

  • Deposit-vs-trading gap. Many Upbit listings open trading before deposits (or vice versa). If you can't deposit your pre-staged inventory in time, you can't sell into the spike. Read the exact announcement timing, not just the headline.
  • Listing dump risk. Pre-existing holders use the new KRW liquidity to exit. Even if the price spikes 30%, you may be selling into the same wall.
  • Withdrawal freeze on the source venue. Global exchanges sometimes pause withdrawals on the asset right before a Korean listing — confirm /api/v1/wallet-status before assuming you can move.
  • Latency tail risk. The announcement-to-quote window is sub-second for the top market makers. Without colo or a low-latency WS feed, you're the exit liquidity, not the alpha.
  • 유의종목 (caution) tagging. Tokens placed on Upbit's investment-caution list can dump 30–70% in minutes. Cross-check /api/v1/cex/symbol/active-symbol-cautions.
  • Regulatory. Upbit/Bithumb listings have, historically, been investigated for selective-disclosure. Front-running announcements with off-exchange information is legally risky in Korea.
Domain-specific content

This playbook's tactics (timing patterns, caution-tag behavior, deposit-vs-trade gap quirks) reflect Korean-exchange conventions current as of mid-2026. Exchange policies change. Always validate against the live announcement text and the venue's current rule book before sizing up.

Further reading