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
.png?sv=2022-11-02&spr=https&st=2025-11-03T11%3A03%3A25Z&se=2025-11-03T11%3A14%3A25Z&sr=c&sp=r&sig=fWQhhXtQKIv4Lmr5RovMxbHH9dILilS9HtpKGKFzzw8%3D)
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.
.png?sv=2022-11-02&spr=https&st=2025-11-03T11%3A03%3A25Z&se=2025-11-03T11%3A14%3A25Z&sr=c&sp=r&sig=fWQhhXtQKIv4Lmr5RovMxbHH9dILilS9HtpKGKFzzw8%3D)
Specify the following:
Scope:
SystemDefaultsCode:
RebalanceFiltersAn item containing the following:
A Key that’s unique within the config set.
A JSON Value containing the following:
A
nameto identify the filter in the Rebalance dashboard.An array of one or more
filters, each containing:A
leftvalue containing the order property you want to filter onAn
operator; see supported operatorsA
rightvalue 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" } ] }.png?sv=2022-11-02&spr=https&st=2025-11-03T11%3A03%3A25Z&se=2025-11-03T11%3A14%3A25Z&sr=c&sp=r&sig=fWQhhXtQKIv4Lmr5RovMxbHH9dILilS9HtpKGKFzzw8%3D)