Skip to main content

Asset Classification Regime

Data Dictionary- Table: Asset_Classification_Regime#

Asset Classification represents groups of instruments with similar financial characteristics, similar behavior in the markets or placed under similar regulations. Best practice for portfolio management relies on Strategic Asset Allocation and Tactical Asset Allocation to maintain a diversified portfolio with balanced risk and reward (as defined by MPT). In Glue, the Asset Classification tables permit the creation of arbitrary asset groups, e.g based on financial instrument, region, industry sector, etc, which can be hierarchicly structured. The Asset_Classification_Regime table holds information regarding the type of grouping that is applied to the instruments. Also includes information if this is internal classification or is it based on international standard. (i.e. GICS)

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComment
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
NameVARCHAR(45)NULLGICS, Asset Allocation Breakdown, Sector, Asset Type, CurrencyClassification Regime can be standard: GICS for Sector, or can be arbitrary based on internal classification of the assets. For example Equity > Americas > Airlines which combines asset type, region and sector into one can be internally predefined classification
OwnerBIGINT(12)NULL1Related to Business partner table. Column shows the owner of the Classification. Internal party to the Organization: Division, Team, Subsidiary or external party: GICS. Can be useful in the maintenance of different standards for the same type of classification, i.e. Sector.
DepthINTNULL3Number of classifiction layers
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
Owner(id)Business_Partner (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Owner_idxAsset_Classification_Regime(Owner ASC)VISIBLE;.