Strategies
Reference playbooks for crypto arbitrage and signal-driven trading strategies, paired with the DataMaxi+ endpoints that power them.
Each page is structured the same way: what it is, when it works, data you need, API recipe (cURL / Python / Go / TypeScript), risks & caveats, and further reading. Treat them as starting points, not turn-key bots. Real execution requires fee modeling, slippage analysis, and exchange-specific quirks that no public dataset can fully capture.
Strategy catalog
| Strategy | Type | Difficulty | Capital required | Risk profile | Required venue access |
|---|---|---|---|---|---|
| Kimchi Premium | Cross-border arb | Hard | High ($50k+) | Settlement, regulatory, KRW liquidity | Korean exchange (Upbit/Bithumb) + global CEX |
| Funding Rate Arbitrage | Delta-neutral carry | Medium | Medium ($10k+) | Funding regime flips, liquidation, basis blowout | One CEX with spot + perp |
| Listing Arbitrage | Event-driven | Hard | Medium | Latency, listing dump, withdrawal freeze | Korean exchange + global CEX with the token already listed |
| CEX-CEX Spread (Premium) | Spot price gap | Easy-Medium | Low-Medium ($5k+) | Withdrawal fees, transfer time, network congestion | Two CEXs supporting the same asset/network |
| CEX-DEX Arbitrage | Cross-venue arb | Hard | Medium-High | Gas, MEV, bridge risk, oracle lag | CEX + DEX wallet + bridges |
| Trend Signals | Sentiment / leading indicator | Medium | Any | Signal decay, false positives, regime change | Any execution venue |
How to choose
- Capital constrained, low ops complexity ▸ start with CEX-CEX Spread on a single network you already understand.
- You want yield, not directional bets ▸ Funding Rate Arbitrage. Delta-neutral, fewer surprises if you size risk properly.
- You have KRW on a Korean exchange ▸ Kimchi Premium and Listing Arbitrage are uniquely accessible — and uniquely hard to size up.
- You want alpha that isn't price-derived ▸ Trend Signals. Combine with another strategy as a filter.
- You can run infra and stomach MEV ▸ CEX-DEX Arbitrage.
Conventions used in every playbook
- Base URL:
https://api.datamaxiplus.com - Auth header:
X-DTMX-APIKEY: $YOUR_API_KEY - All data-api endpoints are
GETwith query parameters; no request bodies. - Snippets use the four canonical languages: cURL, Python (
requests), Go (net/http), TypeScript (axios).