Qu'est-ce qu'un ticker ?

Un ticker, synonyme de symbole boursier, est la forme abrégée d'un actif. Ses informations sont mises à jour en continu tout au long d'une séance de négociation.

Par exemple, ETH-BTC, si vous avez installé les outils curlopen in new window et jqopen in new window, vous pouvez obtenir un ticker de Kucoin avec cette commande:

curl -s https://api.kucoin.com/api/v1/market/orderbook/level1?symbol=ETH-BTC | jq .data

Vous allez avoir un résultat ressemblant à cela :

{
  "time": 1597187421265,
  "sequence": "1594340550066",
  "price": "0.033131",
  "size": "0.0013217",
  "bestBid": "0.03313",
  "bestBidSize": "2.1812529",
  "bestAsk": "0.033131",
  "bestAskSize": "2.8001025"
}

La première devise répertoriée d'une paire de devises est appelée devise de base (ETH dans notre exemple) et la deuxième devise est appelée devise de cotation (BTC dans notre exemple). Un prix à 0,033131 signifie que 1 Ether peut être acheté avec 0,033131 Bitcoin.

Voici les champs que vous pouvez trouver sur un ticker :

FieldDescription
currencyPairCurrency pair (ETH-BTC for example)
openThe opening price is the first trade price that was recorded during the day’s trading
lastLast trade field is the price at which the last trade was executed
bidThe bid price shown represents the highest price
askThe ask price shown represents the lowest price
highThe day’s high price
lowThe day’s low price
vwapVolume-weighted average price (VWAP) is the ratio of the value traded to total volume traded over a particular time horizon (usually one day)
volumeVolume is the number of shares or contracts traded
quoteVolumeQuote volume
bidSizeThe bid size represents the quantity of a security that investors are willing to purchase at a specified bid price
askSizeThe ask size represents the quantity of a security that investors are willing to sell at a specified selling price
timestampThe moment at which the account information was retrieved