Skip to main content

Group 🆕

A group is a list of things such as favourites or export items.

Introduction​

A basic group contains a list of either static or dynamic things which can be used throughout the platform.

Defining a Group​

Below is a table with all the properties of a basic group:

NameTypeExampleDescription
_idObjectId67d3ee92196dab047409db1aThe unique auto-generated id for this group
serviceStringdataThe name of the service where the items for this group exist
typeStringfavouriteThe type of this group - can be anything, but there are some special group types
categoryStringPowerA category is used to categorise groups according to similar types
nameStringNetherlands SpotThe name of the group
descriptionStringSpot Data for the NetherlandsA description of the group
sharedBooleantrueTrue if the group is accessible to everyone, false if only you can see it
itemsArray...The list of items in this group (if it is static)
dynamicBooleanfalseTrue if this is a dynamic group and the items are read using the dynamicOptions
dynamicOptions.serviceStringobjectThe service used to get the list of id's, defaults to the group service
dynamicOptions.sourceStringpublicThe source of the items, defaults to private
dynamicOptions.filterString_type='#ForeignExchange'The filter used to dynamically find the items for this group
dynamicOptions.fieldString_idThe field for the id of the item, defaults to _id
dynamicOptions.objectfilterString_type='#ForeignExchange'Use this to filter data based on master data properties

Managing groups in ODSL code​

Creating groups​

Creating a static group​

bg = Group()
bg.name="My Items"
bg.category = "Data Lists"
bg.service = "object"
bg.type = "favourite"
bg.items = ["ICE.IFEU.B","ICE.NDEX.NLB"]
save bg

Creating a dynamic group​

bg = Group()
bg.name = "FX Data"
bg.category = "Data Lists"
bg.service = "object"
bg.type = "favourite"
bg.dynamicOptions.source = "public"
bg.dynamicOptions.filter = "_type='#ForeignExchange'"
save bg

Creating a dynamic group using an object filter​

bg = Group()
bg.name = "FX Data"
bg.category = "Data Lists"
bg.service = "data"
bg.type = "favourite"
bg.dynamicOptions.objectfilter = "source='ICE' and exchange='NDEX'"
bg.dynamicOptions.filter = "_type != 'VarCurve'"
save bg

Listing groups​

find ${group} project type, category, name

Getting a group​

You can refer to a group either with its _id or using the format service:type:category:name

Getting a group using the _id​

g = ${group:"67d3ee92196dab047409db1a"}
print g

Getting a group using type, category and name​

g = ${group:"data:favourite:Data Lists:FX Data"}
print g

Adding items to a static group​

Getting the group and adding the item to the items array

g = ${group:"object:favourite:Data Lists:My Items"}
g.items.add("ICE.NDEX.NLP")
save g

Removing an item from a static group​

Getting the group, removing the item and saving the group with the replace option

g = ${group:"object:favourite:Data Lists:My Items"}
g.items.remove("ICE.NDEX.NLP")
save g replace

Directly removing an item

delete ${group:"object:favourite:Data Lists:My Items/items/ICE.NDEX.NLP"}

Rolling back changes to a group​

All changes to groups are tracked and versioned, you can rollback to a previous version of a group using the delete command

delete ${group:"object:favourite:Data Lists:My Items"}

Listing versions of a group​

v = ${group:"object:favourite:Data Lists:My Items":*}
print v

Getting a specific version of a group​

v = ${group:"object:favourite:Data Lists:My Items":1}
print v

Tagging a version of a group​

You can tag a version of a group and directly refer to that version using the tag

tag ${group:"object:favourite:Data Lists:My Items":1} as "TEST"

Getting a version using the tag​

v = ${group:"object:favourite:Data Lists:My Items":TEST}
print v

Deleting a group​

To fully delete a group, use the version *

delete ${group:"object:favourite:Data Lists:My Items":*}

Using groups in ODSL code​

You can use groups when searching for data in other services.

Example using the object service​

Let's assume we have a group defined with 2 items in the object service, e.g.

bg = Group()
bg.name="My Items"
bg.category = "Data Lists"
bg.service = "object"
bg.type = "favourite"
bg.items = ["ICE.IFEU.B","ICE.NDEX.NLB"]
save bg

We can retrieve data from the object service using the group in an in clause as follows:

find ${object:"all"} where _id in group("object:favourite:Data Lists:My Items") project name

Example using curves in the data service​

Let's assume we have a group defined with 2 curves in the data service, e.g.

bg = Group()
bg.name="Settlements"
bg.category = "Data Lists"
bg.service = "data"
bg.type = "favourite"
bg.items = ["ICE.IFEU.B:SETTLE","ICE.NDEX.NLO:SETTLE"]
save bg

We can retrieve data from the object service using the group in an in clause and a specific ondate as follows:

find for ondate("2025-03-13") ${data} where _id in group("data:favourite:Data Lists:Settlements")

We can also use a relative ondate as follows:

find for ondate("L-1") ${data} where _id in group("data:favourite:Data Lists:Settlements")

Special Group Types​

There are some pre-defined special groups which control specific functionality within the platform.

Curve Build Group​

A curve build group has specific configuration information regarding the cut-off time for when curves need to be ready for and the rules to run if they are not ready by that time.

The type for the group is set to build The category for the group is set to curve The service for the group is set to curve

A curve build group adds these additional fields to a group

NameTypeExampleDescription
timezoneStringEurope/BerlinSets the timezone for the cut-off time, defaults to UTC
calendarString#HENGSets the calendar used to determine the days that the curve is expected to build
cronStringSets the cut-off cron expression after which a substitute curve is created if it has not been built yet
offsetinteger0Sets the number of days back to calculate the ondate from the cut off time, defaults to 0
useLatestBooleantrueA built in rule that uses the latest successfully build curve as a substitute if todays curve is missing
scriptStringSets the script that contains the function used to build a substitute curve if the curve isn't available by the cut-off time
expressionStringSets the expression/function contained in the script used to build a substitute curve if the curve isn't available by the cut-off time

An example build group​

g = BuildGroup()
g.name = "default2"
g.description = "Default Build Group"
g.calendar = "BUSINESS"
g.cron = "45 23 ? * MON-FRI * EU1"
g.offset = 0
g.timezone = "Europe/London"
g.useLatest = true
save g

Quality Group​

A quality group is a list of checks to perform on curves or datasets.

A quality group contains checks rather than items in a service.

The type for the group is set to quality The category and service for the group is set to curve or dataset

A quality group adds these additional fields to a group

NameTypeExampleDescription
scriptStringThe script that contains the functions used for these quality checks
checksListA list of checks to perform

A check is defined as

NameTypeExampleDescription
nameStringTest for zerosThe human readable name of the check
expressionStringThe expression/function used to run this check

An example quality group​

g = QualityGroup()
g.name = "default"
g.description = "Default Quality Group"
g.category = "curve"
g.script = "#QualityCheckCurves"
g.addCheck("Check for tenor gaps", "gapCheck()")
g.addCheck("Check for missing values", "missingCheck()")
g.addCheck("Check for zero values", "zeroCheck()")
save g

Export Group​

An export group is a list of items that a function is run at a set time, usually to export the data to a downstream system.

The type for the group is set to export The category and service for the group is set to curve or dataset

An export group adds these additional fields to a group

NameTypeExampleDescription
enabledbooleantrueA flag to enable or disable this export group
cronStringSet a cron expression to run the export
offsetInteger0Sets the number of days back to calculate the ondate from the cut off time, defaults to 0
calendarString#HENGSets the calendar used to determine the days that the curve is expected to be exported
versionStringAPPROVEDSet the name of the curve version to export, leave null to use the latest version
scriptStringSets the script that contains the functions used for these exports
expressionStringSets the expression/function contained in the script used to export the data

An example export group​

g = ExportGroup()
g.name = "DAILY"
g.description = "Daily Curve Export Group"
g.enabled = true
g.cron = "00 23 ? * MON-FRI *"
g.calendar = "BUSINESS"
g.offset = 0
g.script = 'odsl-demo\Exports\daily_export_report'
g.expression = "export()"
save g

Approval Group​

An approval group is a list of email addresses of users that can approve the list of curves.

The type for the group is set to approval The category and service for the group is set to curve

An approval group adds these additional fields to a group

NameTypeExampleDescription
approversList...The list of email addresses of users that can approve the curves
versionStringAPPROVEDSet the name of the curve version upon approval, defaults to APPROVED

An example approval group​

g = ApprovalGroup()
g.name = "default"
g.description = "Default Approval Group"
g.approvers.add("demo@opendatadsl.com")
g.version = "APPROVED"
save g

Subscription Target Group​

A subscription target group is a list of targets to send subscriptions to.

A quality group contains targets rather than items in a service.

The type for the group is set to TargetGroup The category and service for the group is set to subscription

A target group adds these additional fields to a group

NameTypeExampleDescription
targetsSubscriptionTargetThe configuration for the subscription target

An example subscription target group​

group = TargetGroup()
group.name = "SupportAlertGroup"
group.addTeamsChannelTarget("https://...", "#TeamsAlertMessage")
save group
info

For examples of other targets see here