💹 All content on this page is relevant to Trading Terminal only.
Account Manager is an interactive table that displays trading information. It includes 3 pages: orders/positions and account information.
To create an account manager you will need to describe columns of each page and provide data.
Remark 1. Broker API should implement accountManagerInfo
The following information should be returned by accountManagerInfo.
Account Manager's header includes the name of the broker and an account name or a list of accounts.
account: WatchedValue of AccountInfo
AccountInfo
is an object with the following keys:
id
- account idname
- account namecurrency
- account currency
If the currency
key is not set, USD
will be used as a default value.
orderColumns: array of Column
Columns description that you want to be displayed on the Orders page. You can display any field of an order or add your own fields to an order object and display them.
orderColumnsSorting: SortingParameters
Optional sorting of the table. If it is not set, the table is sorted by the first column.
possibleOrderStatuses: array of OrderStatus
Optional list of statuses to be used in the orders filter. Default list is used if it hasn't been set.
historyColumns: array of Column
History page will be displayed if it exists. All orders from previous sessions will be shown in the History.
historyColumnsSorting: SortingParameters
Optional sorting of the table. If it is not set, the table is sorted by the first column.
positionColumns: array of Column
You can display any field of a position or add your own fields to a position object and display them.
pages: array of Page
You can add new tabs in the Account Manager by using pages
. Each tab is a set of tables.
Page
is a description of an additional Account Manager tab. It is an object with the following fields:
-
id
: StringUnique identifier of a page
-
title
: StringPage title. It is the tab name.
-
tables
: Array of Table.It is possible to display one or more tables in this tab.
You can add one or more tables to a Page. Account Summary table metainfo is an object with the following fields:
-
id
: StringUnique identifier of a table.
-
title
: StringOptional title of a table.
-
columns
: array of Column -
getData
: PromiseThis function is used to request table data. It should return Promise (or Deferred) and resolve it with an array of data rows.
Each row is an object. Keys of this object are column names with the corresponding values.
There is a predefined field
isTotalRow
which can be used to mark a row that should be at the bottom of a table. -
changeDelegate
: DelegateThis delegate is used to watch the data changes and update the table. Pass new account manager data to
fire
method of the delegate. -
initialSorting
: SortingParametersOptional sorting of the table. If it is not set, the table is sorted by the first column.
NOTE: if you have more than 1 row in a table and want to update a row using changeDelegate
make sure that you have id
field in each row to identify it.
It is not necessary if you have only 1 row in a table.
Object with the following properties:
- `columnId` - `id` or `property` of the column that will be used for sorting.
- `asc` - (optional, default `false`) - If it is `true`, then initial sorting will be in ascending order.
Optional array to define custom formatters. Each description is an object with the following fields:
-
name
: unique identifier of a formatter. -
format(options)
: function that is used for formatting of a cell value.options
is an object with the following keys:value
- value to be formattedpriceFormatter
- standard formatter for price. You can use methodformat(price)
to prepare price value.prevValue
- optional field. It is a previous value so you can compare and format accordingly. It exists if current column has thehighlightDiff: true
key.row
- object with all key/value pairs from the current row
The most valuable part of Account Manager description is a description of its columns.
Column title. It will be displayed in the table's header row.
Optional className
is added to the html tag of each value cell.
You can use it to customize table's style.
Here is a list of predefined classes:
class name | description |
---|---|
tv-data-table__cell--symbol-cell |
Special formatter for a symbol field |
tv-data-table__cell--right-align |
It aligns cell value to the right |
tv-data-table__cell--buttons-cell |
Cell with a buttons |
Name of the formatter to be used for data formatting. If formatter
is not set the value is displayed as is.
Formatter can be a default or a custom one.
Here is the list of default formatters:
name | description |
---|---|
symbol |
It is used for a symbol field. It displays brokerSymbol , but when you click on a symbol the chart changes according to the symbol field. property key is ignored. |
side |
It is used to display the side: Sell or Buy. |
type |
It is used to display the type of order: Limit/Stop/StopLimit/Market. |
formatPrice |
Symbol price formatting. |
formatQuantity |
Displays an integer or floating point quantity, separates thousands groups with a space. |
formatPriceForexSup |
The same as formatPrice , but it makes the last character of the price superscripted. It works only if instrument type is set to forex . |
status |
It is used to format the status . |
date |
Displays the date or time. |
localDate |
Displays the local date or time. |
fixed |
Displays a number with 2 decimal places. |
pips |
Displays a number with 1 decimal place. |
profit |
Displays profit. It also adds the + sign, separates thousands and changes the cell text color to red or green. |
There are some special formatters that are used to add buttons to the table:
orderSettings
adds Modify/Cancel buttons to the orders tab. Always set modificationProperty
value to status
for this formatter.
posSettings
adds Edit/Close buttons to the Positions/Net Positions tab
tradeSettings
adds Edit/Close buttons to the Individual Positions tab. Always set modificationProperty
value to canBeClosed
for this formatter.
property
is a data object key that is used to get the data to display in a table.
Optional sortProp
is a data object key that is used for data sorting.
If optional modificationProperty
is set then the change of its value updates the table cell.
Optional notSortable
can be set to prevent column sorting.
help
is a tooltip string for the column.
highlightDiff
can be set with formatPrice
and formatPriceForexSup
formatters only to highlight the changes of the field.
If it is true
then the column width will not be changed when the cell value is decreased.
An optional numeric array of order statuses that is applied to order columns only. If it is available then the column will be displayed in the specified tabs of the status filter only.
Here is the list of possible order statuses:
- 0 - All
- 1 - Canceled
- 2 - Filled
- 3 - Inactive
- 5 - Rejected,
- 6 - Working
e
: context object passed by a browser
activePageItems
: array of ActionMetainfo
items for the current page
Optional function to create a custom context menu.
It should return Promise
that is resolved with an array of ActionMetainfo
.