Home Module

tas

The name tas is short for "Time and Sales". This is a module that displays a table of trades, also known as a Time and Sales log.

You can use it just by clicking on the tas module or by entering command:

tas

This will return a table of trade ordered by time, with the latest trades showing up on top:

tas - default

It features color-coding as a visual aid:

  • call symbols are yellow
  • put symbols are blue
  • if a bullish trade crosses the spread, green row
  • if a bearish trade crosses the spread, red row
tas - color-coded

orderby=

You can also change the ordering with the orderby= parameter. For example - to display trades ordered by value you would use command:

tas orderby=value
tas - orderby

roots=

If you want to only display trades for a given underlying (or "root") you can list the roots you are interested in separated by a comma, like so:

tas orderby=value roots=nvda,aapl
tas - AAPL and NVDA

filters=

If you want to filter for any of the columns available, you can use the filters= param. For example, to filter for trades with a delta lower than 0.1, higher than 0, and size higher than 100:

tas orderby=value roots=nvda,aapl filters=delta<0.1,delta>0,size>100
tas - filters

cols=

You can also change the columns display by listing the columns with the cols= param. For example, to only list time, symbol, price, value and size. This can be useful if you don't need to see all columns and you need to combine it in a dashboard with other modules:

tas cols=time,symbol,price,value,size
tas - columns

To view more customization parameters, you can click on the ⚙️ to the right of the command bar.

Reminder: you do not need to memorize these commands. The module can be entirely customized by clicking on the ⚙️ to the right of the command bar.

You can see a full list of the available parameters for cols= by opening the ⚙️ panel or in the Data Parameters page under the "Time and Sales" section.