Market Data: February 26, 2020

Market data report provided by XTRD FIX API

BITHUMB

Bithumb contains 167 trading pairs consisting of 118 assets

New coins listed: YO, KOK, WABI

Available cryptocurrency pairs: 

OKEX

OKEx contains 373 trading pairs consisting of 150 assets

New coins listed: HDAO, APM

Available cryptocurrency pairs: 

GATE.IO

GATE.IO contains 446 trading pairs consisting of 217 assets

New coins listed: BTC3L, BTC3S

Available cryptocurrency pairs: 

New cryptocurrency pair: 

BINANCE

Binance contains 756 trading pairs consisting of 217 assets

New coin listed: MBL

Available cryptocurrency pairs: 

Delisted coins: 

  • 123
  • 456

Removed cryptocurrency pairs: 

  • 123/456

OKCOIN

OKCoin contains 25 trading pairs consisting of 20 assets

New coin listed: DAI

Available cryptocurrency pair: 

BINANCE.US

Binance.US contains 53 trading pairs consisting of 31 assets

New coin listed: ZIL

Available cryptocurrency pairs: 

New cryptocurrency pair: 

PROBIT

PROBIT contains 420 trading pairs consisting of 240 assets

New coins listed: OKS, STI, DOGE, EIN, KDAG, BTCC

Available cryptocurrency pairs: 

Removed cryptocurrency pairs: 

  • MPG/KRW
  • MPG/BTC

STEX

STEX contains 441 trading pairs consisting of 347 assets

New coin listed: HMR

New cryptocurrency pairs: 

Removed cryptocurrency pairs: 

  • MPG/ETH
  • MPG/BTC

COINBASE

CoinBase contains 58 trading pairs consisting of 25 assets

New coin listed: KNC

Available cryptocurrency pairs: 

HITBTC

HitBTC contains 897 trading pairs consisting of 395 assets

New coins listed: IPX, ROOBEE

Available cryptocurrency pairs: 

Delisted coin: 

  • ENG

Removed currency pairs: 

  • ENG/ETH
  • PAT/ETH
  • PAT/USD
  • PAT/BTC
  • VOCO/ETH
  • VOCO/ETH
  • VOCO/USD

BITTREX

Bittrex contains 353 trading pairs consisting of 238 assets

New coins listed: FRSP, WICC

Available cryptocurrency pairs: 

Market Data: February 19, 2020

Market data report provided by XTRD FIX API

OKEX

OKEx contains 369 trading pairs consisting of 148 assets

New coin listed: RVN

Available cryptocurrency pairs: 

Delisted coins: 

  • SDA
  • SHOW

Removed cryptocurrency pairs: 

  • SDA/ETH
  • SHOW/USDT
  • INSUR/BTC
  • PRA/ETH
  •  XAS/BTC
  • ABL/BTC
  • XAS/USDT
  • PRA/USDT
  • INSUR/USDT
  • ABL/ETH
  • EDGE/USDT
  • EDGE/BTC

GATE.IO

GATE.IO contains 443 trading pairs consisting of 215 assets

New coins listed: EOSBEAR, EOSBULL, XRPBULL, XRPBEAR, BTCBEAR, BTCBULL, ETHBULL, OKB, ETHBEAR, HBAR, HNS

Available cryptocurrency pairs: 

BINANCE 

Binance contains 754 trading pairs consisting of 218 assets

New coins listed: 123, 456

Available cryptocurrency pair: 

New cryptocurrency pairs: 

BITFINEX

BITFINEX contains 424 trading pairs consisting of 161 assets

Removed currency pairs: 

  • BCI/USD
  • BCI/BTC
  • BBN/USD
  • BBN/ETH

PROBIT

PROBIT contains 414 trading pairs consisting of 235 assets

New coins listed: WCC, CORN, MCO, WMA, RTN, SEELE

Available cryptocurrency pairs: 

STEX

STEX contains 440 trading pairs consisting of 347 assets

New coins listed: KICK, XQR, NYC

Available cryptocurrency pairs: 

HITBTC

HitBTC contains 900 trading pairs consisting of 395 assets

New coins listed: MOF, EXM

Available cryptocurrency pairs: 

BITTREX

Bittrex contains 350 trading pairs consisting of 236 assets

New coins listed: VRA, ABBC

Available cryptocurrency pairs: 

New cryptocurrency pairs: 

How to trade on Huobi using Axon Trade FIX API

Original post by Axon Trade Co-Founder and CEO Serg Gulko

Huobi Global is a Singapore based cryptocurrency exchange founded in 2013. With daily volumes of around $2 billion per day, Huobi Global is an extremely liquid exchange for multiple crypto trading pairs including BTC, ETH, LTC, XRP, and more. As of January 2020, it has around 400 verified markets and about 25 unverified markets. It’s worth mentioning that Huobi Global, unlike many other exchanges, has never been hacked and has millions of customers all over the globe.

In this article, we would like to demonstrate how to build a relatively simple but fully functional trading application on top of Axon Trade FIX API that would connect to Huobi. You can freely re-use this as source code in your own projects.

The application will show how to establish two outgoing FIX connections to the Axon Trade FIX Gateway. One of the sessions will be used to receive real-time, normalized market data for a single pair — ETH/USDT. The second session will provide access to trading capabilities alongside certain account’s financial information such as open orders and positions.

So, as the first step, we will connect to the market data session and will subscribe to updates for ETH/USDT.

Simultaneously, the application will establish a connection to a trading session and will perform full cycle recovery operations — get a list of open orders and get available balances.

After we finish the handshake phase, the application will start sending limit orders to buy ETH. The order price will be always 20% outside the market just to make sure that the order will rest in the book and not execute. We will allow the order to rest on the book for several seconds and then cancel it. Then the cycle will start over. Eat. Sleep. Repeat.

Huobi has an advanced and rich API. But, like any big and complex thing, it has its own disadvantages. For example, you can’t send orders using WebSocket and have to use REST API. So what’s the issue? Many digital assets exchanges do the same.

The problem is the confirmation that comes over WebSocket doesn’t contain the client’s assigned ID and only has a Huobi-generated Order ID. However, you can know this external Order ID only after you’ll receive and parse the response on your REST API request. Sometimes, WebSocket’s message is delivered faster than you receive your Order ID which leaves you guessing what this report is all about.

Someone always runs (or rides) faster…

The Axon Trade Orders router successfully solves this problem so our clients can enjoy streamlined ExecutionReport orders in a proper way.

Taking into account that this application will not be that simple, we will use several supportive classes, developed by our team. We do not recommend using these classes in high-load applications because of a lack of optimization but it’s good enough for the purpose of this course.

To build a simple trading application, we will use Java and OnixS FIX Engine. Of course, you can always replace Java with C++, Python, or JavaScript and OnixS with QuickFIX or Fix8, that’s the beauty of the FIX API — it’s completely language and engine agnostic. Yes, we do prefer to use OnixS libraries because of their advantages but this is only an internal team decision.

Feel free to contact us if you need assistance with porting to another language/FIX library, we are happy to help!

The application we will build is a state machine that moves from one stage to another depending on previous conditions. Here is the diagram with possible(simplified to increase readability) states:

As you can see, the application will start sending orders only if it is in the APP_ENTER_MARKET stage which is a combination of MD_READY and ORD_READY. If something unexpected happened, e.g. one of the sessions lost a connection, all trading activities will be stopped.

Let’s get started with the easiest part — establishing a connection to a market data session and subscribing to updates for ETH/USDT.

The Axon Trade MD Feeder expects that you will start your handshake by sending a special message called Logon that contains fields Username and Password.

You might ask a reasonable question — is it secure to send unencrypted credentials? Well, Axon Trade clients are connected to our server using one of these options:

  • IPSec VPN channel
  • Cross-connection
  • Co-locating within Equinix NY4 data center

Therefore, all traffic between you and us is completely isolated from other people. And, as we already know your password, there is no sense to hide it from us:)

In the case of successful authorization, our server will respond with a Logon message which moves us to the stage of sending a message to subscribe to the market data stream.

In FIX we use MarketDataRequest to indicate updates for what instrument(s) and exchanges we would like to receive.

In order to act as a true normalization layer, we decided to maintain our own symbology. So, instead of trading ethusdt(on Huobi), usdteth(on Bittrex), or 4(on BlockTrade) the only one name you have to use is ETH/USDT.

Here is a sample of MarketDataRequest structure and part of Java code to create a corresponding message:

MarketDataRequest

Once received by server, MarketDataRequest message will trigger a chain of events:

  • Full book snapshot will be returned as a form of MarketDataSnapshotFullRefresh message
  • Server will send real-time incremental updates for the required instrument when the corresponding symbol will be changed on the Huobi end. Instead of sending a full book (which sometimes could be really big) Axon Trade takes an approach to optimize data flow by sending only the parts that actually have been changed — e.g. trades, new price levels added or removed, size updates.

Our book management rules are based on widely used principles from traditional finance — a combination of NEW(0), UPDATE(1), and DELETE(2) events. This is a very straightforward approach that helps to easily build reliable and predictable software.

To illustrate this concept, we built and share on our repository a very simple book. We do not recommend using this code in a production environment because it suffers from significant performance penalties. But it’s still good enough for the purpose of this article.

So we will “feed” all market data events into our simple book. This way we can be sure that we have an accurate picture of what is going on in a market (with one particular instrument).

Perfect, we have the data! But what will we do with it? Let’s dive into building a trading connector!

This part is much more complicated compared with market data because it requires position and order synchronization. In order to keep this article in a reasonable size, we will omit actual synchronization and recovery techniques and will only show how to send messages. Anyway, each trading application has its’ own backend and own rules…

The first step is completely the same as the market data session — Logon. Once we pass authorization, it’s time to request a list of our assets under management. FIX has a special message for this — RequestForPositions. Depending on the usage context, the server will return a current position snapshot and/or will continue to notify you in real-time if position size changes in case of trade, withdrawal or deposit.

The workflow is following — you sent a RequestForPositions message and the server will get back to you with one RequestForPositionAck message that indicates what to expect next. In case you do have some positions, the information will arrive in the form of PositionReport messages.

RequestForPositions

The very last PositionReport message will have a special marker that we will use to switch to another stage — order synchronization.

Sometimes your trading session might have live working orders sitting somewhere in books. The Axon Trade FIX API has a special message to call for these working horses — OrderMassStatusRequest. In the FIX world, most of the information about orders is transmitted using ExecutionReport message. This message contains the most number of fields in comparison with other messages from FIX language. But it helps to precisely identify orders and their respective statuses.

As long as Axon Trade acts as a DMA provider, we want to make sure that all our operations are 100% transparent. So alongside the client’s assigned ID (transmitted in field ClOrdID(Tag 11)) and Axon Trade assigned ID (OrderID(Tag 37), always integer number), you will see an exchange-assigned ID (in SecondaryOrderID(Tag 198) field).

Our order synchronization strategy works like this — send OderMassStatusRequest and wait for server response. There are two possible scenarios(in case of a valid initial message):

  • Server will respond with a list of ExecutionReports which can be filtered by MdReqId(request ID, assigned by client) and ExecType=STATUS(I)
  • In the case when you don’t have open orders, the server will respond with specially formatted ExecutionReport. We did it this way because unlike counterparty to Request for Positions — RequestForPositionsAck, FIX does not have a default confirmation message for order status which might mean you’ll wait for your reports forever.

At this point, our positions and orders are synchronized so let’s have some fun shooting orders!

Our application will take the top of the book price and then will send a Limit order with price X pips aways from the best bid or offer (depending on a side we choose). Our goal is to create an order which will rest in the book for a certain amount of time before the algo cancels it.

To place an order, we will use a message called NewOrderSingle. Its’ fields are pretty straightforward and self-explanatory — you need to specify Side(Tag 54 ) (buy or sell), Type(Tag 40) (Limit in our case), provide a limit price and order size, set Symbol(Tag 55) and a routing destination(Tag 11) (HUOBI in this case). The full fields description for NewOrderSingle message can be found here.

NewOrderSingle

Once an order is sent out, the server will respond with a certain number of ExecutionReports indicating life cycle changes. The Axon Trade platform uses the following statuses to indicate what is going on with your order:

  • PENDING_NEW: order passed initial verification and is accepted by our platform for further execution
  • NEW(0): order has been delivered to the target exchange and accepted for execution
  • PARTIALLY FILLED(1)/FILLED(2): part of the order size or whole order has been matched with a counterparty and executed
  • CANCELED(4): order has been canceled manually or through API request
  • REJECTED(8): order has been rejected because of an internal error or wrong parameters

Of course, we all want to see a perfect PENDING_NEW/NEW -> FILLED cycle and our engineers are doing their best in order to provide the fastest tech. We also rely on our LP partners such as Huobi Global.

Perfect, your order is in a book so let’s hurry to cancel it before it gets executed!

To cancel an order, you need to send an OrderCancelRequest message. Here is the tricky part — you need to provide 3 IDs:

  • ClOrdID: ID for your cancel request
  • OrigClOrdID: this is an internal ID of your trading order sent on a previous step
  • OrderID: ID on Axon Trade side

Translated in human language, this record should be read as follows: “use Order ClOrdID to cancel my previously placed order OrigClOrdID/OrderID

OrderCancelRequest

Once we cancel your order, the server will notify you with corresponding ExecutionReport, confirming that trading/working order has been canceled.

In accordance with the workflow of a demo application, the algo will sleep for 2 seconds and then will send another Limit order. Again. And again.

As you can see, it’s relatively easy to build a simple trading application for Huobi using the Axon Trade FIX API. When properly designed, it will work clockwise, without stops for sleep or rest. Of course, you need to integrate some logic to enter and exit markets but there are many signal providers, case studies, technical analysis libraries, and even AI platforms that could be utilized.

No matter what you will use as the “brain” for your actual application, rest assured that the Axon Trade FIX API for trading on cryptocurrency exchanges such as Huobi will remain a trustworthy and reliable partner!

Market Data: February 12, 2020

Market data report provided by XTRD FIX API

EXMO

EXMO contains 179 trading pairs consisting of 58 assets

New coins added: ONT, ONG

Available currency pairs: 

YOBIT 

Yobit contains 8491 trading pairs consisting of 1417 assets

New coins listed: ALISA, XALIS, WTP

Available currency pairs: 

Removed currency pairs: 

  • ALIS/RUR
  • ALIS/USD
  • ALIS/WAVES
  • ALIS/ETH
  • ALIS/DOGE
  • ALIS/BTC

HUOBI

Huobi contains 561 trading pairs consisting of 229 assets

New cryptocurrency pair: 

BINANCE

Binance contains 743 trading pairs consisting of 216 assets

New coins listed: EOSBEAR, EOSBULL, XRPBULL, XRPBEAR, LTO

Available cryptocurrency pairs: 

New cryptocurrency pairs: 

BEQUANT 

Bequant contains 94 trading pairs consisting of 25 assets

New cryptocurrency pairs: 

Removed cryptocurrency pairs: 

  • ADA/USDB
  • ADA/TUSD
  • ADA/EOS
  • ADA/EURB
  • ADA/DAI

LGO

LGO contains 2 trading pairs consisting of 3 assets

New coin listed: LGO

Available currency pair: 

CEX.IO

CEX.IO contains 76 trading pairs consisting of 27 assets

New coin listed: XTZ

Available currency pairs: 

New cryptocurrency pair: 

PROBIT

PROBIT contains 405 trading pairs consisting of 229 assets

New coins listed: CRO, CALL, KVN, HUSL, KAM, NXR, HNC

Available cryptocurrency pairs: 

STEX

STEX contains 436 trading pairs consisting of 344 assets

New coins listed: ASY, DIVI

Available cryptocurrency pairs: 

Delisted coin: 

  • OMNES

Removed cryptocurrency pair: 

  • OMNES/ETH

BITMART

Bitmart contains 30 trading pairs consisting of 31 assets

New cryptocurrency pairs: 

Delisted 55 coins

Removed 282 cryptocurrency pairs

HITBTC 

HitBTC contains 898 trading pairs consisting of 393 assets

New coins listed: CELR, NWC, BDP, VSYS

Available currency pairs: 

Delisted coin: 

  • HPC

Removed currency pairs: 

  • HPC/BTC
  • ECOIN/ETH
  • DWS/USD
  • DWS/BTC
  • ECOIN/BTC
  • DWS/ETH
  • ECOIN/USD

Market Data: February 5, 2020

Market data report provided by XTRD FIX API

YOBIT 

Yobit contains 8477 trading pairs consisting of 1415 assets

New coin listed: YODA

Available currency pairs: 

HUOBI

Huobi contains 560 trading pairs consisting of 229 assets

New cryptocurrency pair: 

BINANCE

Binance contains 721 trading pairs consisting of 211 assets

New coins listed: ETHBULL, ETHBEAR, WRX

Available cryptocurrency pairs: 

BITMEX

Bitmex contains 12 trading pairs consisting of 11 assets

New currency pair: 

Delisted coins: 

  • 7D_U105
  • 7D_D95

Removed cryptocurrency pairs: 

  • XBT/7D_U105
  • XBT/7D_D95

BEQUANT

Bequant contains 98 trading pairs consisting of 25 assets

New coin listed: GBPB

Available currency pairs: 

CEX.IO

CEX.IO contains 72 trading pairs consisting of 26 assets

New coin listed: BAT

Available currency pairs: 

PROBIT

PROBIT contains 393 trading pairs consisting of 221 assets

New coins listed: BITS, BALO, VLDT

Available cryptocurrency pairs: 

Delisted coin: 

  • LYL

Removed cryptocurrency pairs: 

  • LYL/BTC
  • CPS/USDT

STEX

STEX contains 435 trading pairs consisting of 343 assets

New coin listed: LST

Available cryptocurrency pairs: 

Delisted coin: 

  • NPAY

Removed cryptocurrency pair: 

  • NPAY/BTC

HITBTC

HitBTC contains 897 trading pairs consisting of 392 assets

New coin listed: SOLVE

Available cryptocurrency pair: 

Removed currency pairs: 

  • SOZ/ETH
  • CDCC/USD
  • SVD/USD
  • CDCC/BTC
  • HAND/USD
  • HVN/ETH
  • SOZ/USD
  • CDCC/ETH
  • SOZ/BTC
  • SVD/ETH
  • SVD/BTC
  • HVN/BTC
  • HAND/ETH

BITTREX

Bittrex contains 343 trading pairs consisting of 233 assets

New coin listed: IOTA

Available cryptocurrency pair: