The Include orders dropdown in the Rebalance dashboard allows you to control which open orders LUSID includes in your dashboard. You can select:
A default filter, including:
All orders
Allocated orders
No orders
A custom filter that you configure yourself
To configure a custom filter for orders:
Navigate to System Settings > Configuration Store, and go to the Shared keys tab.
Click the Add configuration set button.
Specify the following:
Scope:
SystemDefaults
Code:
RebalanceFilters
An item containing the following:
A Key that’s unique within the config set.
A JSON Value containing the following:
A
name
to identify the filter in the Rebalance dashboard.An array of one or more
filters
, each containing:A
left
value containing the order property you want to filter onAn
operator
; see supported operatorsA
right
value for use by the operator
For example, to create a filter that displays orders for a particular portfolio manager and trading venue, you might specify the following JSON:
{ "name": "JaneSmith-NYSE", "filters": [ { "left": "Order/Finbourne-Examples/PortfolioManager", "operator": "Equals", "right": "Jane Smith" }, { "left": "Order/Finbourne-Examples/Exchange", "operator": "Equals", "right": "NYSE" } ] }