Skip to main content

Instrument Classification

Data Dictionary - Entity Table: Instrument_Classification#

One instrument can belong to multiple asset class nodes. Instrument_Classification table provides the link between Asset Classification Nodes and the Instrument.
E.g., instrument X can be Energy industry and Equity. This classification helps maintanence of balanced portfolio and build the investment startegy for each invesor (Strategic Asset Allocation and Tactical Asset Allocation).

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
InstrumentBIGINT(12)NULL2Instrument id
NodeBIGINT(12)NULL2Asset Classification Node Id
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
ACNode(Node)Asset_Classification_Node (id)NO ACTIONNO ACTION
ACInstrument(Instrument)Instrument (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Node_idxInstrument_Classification(Node ASC)VISIBLE.
Instrument_idxInstrument_Classification(Instrument ASC)VISIBLE.