Feed 'B' - Global order books

Global book feed, returns only first 25 book levels

Requests

{"event": "bind", "feed": "B", "feedId": "BTC-EUR"}

Useinstrument name as "feedId" value to subscribe on instrument book

Feed handling

bookLevel = [
  0: price (Efx::Price)
  1: size (Efx::Size)
]

bookUpdate = [
  0: action ('+', 'M', '-' or '~')
  1: price (Efx::Price)
  2: size (Efx::Size)
]

"+" action: book level added
"M" action: book level size modified
"-" action: book level removed
"~" action: top of book removed till specified price, 
            price and size of a new top level are returned 
            (both zeros if book side became empty)

If you receive the following update [~, 12300000000, 100000000], then you must delete levels from the existing order book starting from the top of the book and ending with the order at a price of 123 and size of 1. Therefore, price 123 and size 1 is the new top of the book.

If you receive the following update [~, 0, 0], the described side of the book is empty.

For detailed book description

Last updated