Pulse has specialized support for finance market data.
Some connections supply tables with a particular naming scheme.
This then allows some visualizations to display market data in a specialized way.

Quote Data Format

Level 2 also called Depth of Book is a term for market data that includes the scope of bid and ask prices for a given security. Level 2 includes the price book and order book, listing all price levels of quotes submitted to an exchange and each individual quote.

Column Type Description
datedateDate and time of quote
symbolstringThe financial instrument being quoted
a0-aXXnumber Ask Price
as0-asXXnumber Ask Size
b0-bXXnumber Bid Price
bs0-bsXXnumber Bid Size

Trade Data Format

Column Type Description
tradeDatedateDate and time of trade
symbolstringThe financial instrument being quoted
pricenumber Price traded at.
quantitynumber Quantity traded.

Order Book Visualization

Order Book Heatmap Visualization

Binance data can be viewed using the specialized orderbook visualization:

{"method": "SUBSCRIBE", "params":["btcusdt@depth","btcusdt@trade"], "id": 5}

Order Book Visualization Configuration Order Book Heatmap

Bar / Stack / Line Chart

If you select stacked bar chart for viewing binance depth data, it will create the common bid vs ask chart:
{"method": "SUBSCRIBE","params":["btcusdt@depth"],"id": 3}

Order Book bar Chart

3DBar of Asks

If you select 3D bar chart, it will create a 3D bar chart of the ask prices vs size over time:
{"method": "SUBSCRIBE","params":["btcusdt@depth"],"id": 3}

Order Book bar Chart