— derivatives intelligence terminal

liquidation
cartography.
live data.
bot ready.

Agregator Hyperliquid · Aster · Binance Futures · Coinglass. Mapa likwidacji liczona własnym modelem na bazie open interest i obserwowanych force orders. Wszystkie indykatory, orderbooki, fundingi, leaderboardy — surowe dane przez REST + WebSocket bus dla bota.

— 01

LIVE FEED

streaming
BTC
ETH
SOL
BNB
XRP
— what's inside

six panels.
one terminal.

— 01

OVERVIEW

Wykresy świecowe BTC / ETH / SOL na 5m i 15m, aktualizowane przez WebSocket tickem. Markery likwidacji bezpośrednio na świecach, live RSI per symbol, real-time stream force orders ze wszystkich par Binance Futures.

— 02

MARKET

Top 100 USDT-perp jako bubble chart (rozmiar = volume, kolor = % change). Composite sentiment score na całym top 100, BTC dominance, gainers / losers / funding extremes, whale trades ≥ $500k live.

— 03

LIQ MAP

Własny model mapy likwidacji — heatmap (cena × dźwignia) i histogram (longs ← → shorts). Dźwignie ×5 / ×10 / ×15 / ×25 / ×50 / ×75 / ×100, okna 12h / 24h / 1d / 7d. Top 5 klastrów oznaczonych jako support / resistance.

— 04

BOT API

18 endpointów REST + WebSocket bus. Multi-tf signal aggregation, klastry likwidacji jako key levels, whale alerts, market sentiment — wszystko w czystym JSON pod konsumpcję bota.

live subscribers
liquidations · 7d
candles in memory
binance ws
— bot integration

18 endpoints.
one websocket.

Każdy endpoint zwraca strukturyzowany JSON z timestampem. Klucz API w nagłówku x-api-key. WebSocket bus dla live'ów: kline ticks, force orders, ticker updates — bot łączy się raz, dostaje wszystko.

GET /bot/snapshot — ceny, fundingi, volume GET /bot/klines — świece live z bufora GET /bot/depth — orderbook GET /bot/funding — fundingi spot/perp GET /bot/oi · /oi-hist — open interest GET /bot/lsr — long/short ratio GET /bot/indicators — RSI, MACD, BB, etc. GET /bot/signals — multi-tf agregacja GET /bot/liquidations — bufor 7 dni GET /bot/liqmap — pełna mapa JSON GET /bot/clusters — kluczowe poziomy GET /bot/leaderboard — HL / Aster WS /ws — live bus
# podłącz bota const ws = new WebSocket( 'wss://twoja-domena/ws?key=$BOT_KEY' ); ws.on('message', m => { const { type, payload } = JSON.parse(m); if (type === 'kline') { // świeca tick — recalc strategy strategy.update(payload.candle); } if (type === 'liq') { // nowa likwidacja risk.flagLiquidation(payload); } if (type === 'tickers') { // price snapshot pricing.sync(payload); } }); # albo REST snapshot fetch('/bot/signals?symbol=BTCUSDT', { headers: { 'x-api-key': BOT_KEY } }) .then(r => r.json()) .then(({ aggregate }) => { if (aggregate.action === 'BUY') bot.long(); });