You can model an exchange-traded credit default swap index (CDX) contract as an instrument of type CdsIndex
in LUSID. See all supported instruments.
Note: Most of the information in this article also applies to a single name CDS contract, except the LUSID instrument type is
CreditDefaultSwap
.
Mastering an instrument
There are numerous tools you can use to master a CdsIndex
in the LUSID Security Master.
Some fields are common to all types of instrument, such as an intuitive name
, the requirement to specify a set of identifiers
, and the facility to store extra information as properties
.
Fields in the economic definition
object are specific to CdsIndex
. For more information on these fields, select CdsIndex from the definition dropdown in the UpsertInstruments API reference:
In this tutorial, we’ll master a Markit-iTraxx-Crossover contract by calling the UpsertInstruments
API as follows:
Note the following:
We’ve chosen to master this instrument in a custom instrument scope (specified in the URL).
The
identifiers
field uniquely identifies the instrument using aClientInternal
identifier.In the economic
definition
object:The
instrumentType
must beCdsIndex
.The nested
identifiers
object should be empty:{}
.The
notional
should be unitised (set to1
) and the amount bought or sold specified on the transaction.The
couponRate
representing the premium payment should be expressed as a decimal rather than a percentage, so:5% should have a
couponRate
of0.05
1% should have a
couponRate
of0.01
, and so on.
The
flowConventions
field must reference aCdsFlowConventions
object storing all the information necessary to determine premium payment periods and dates:The
paymentFrequency
field can be any tenor, in this case6M
to signify twice yearly. Supported day count conventions.The
rollConvention
field can specify a fixed day (for exampleIMM
orEndOfMonth
) or alternatively a number representing a day of the month. We also recommend setting abusinessDayConvention
to determine what should happen if this is not a good business day. More information on roll and business day conventions. Note good business days in LUSID are determined by holiday calendars.The
settleDays
andresetDays
fields are optional. Thescope
andcode
fields can be ignored unless you are loading a CDS flow convention from a library.
The
basket
field is now optional and there is no need to identity the underlying CDS trades in the index.
Note: LUSID implicitly creates protection and payment legs for a CDX instrument but note the recommended
CdsLookupPricer
pricing model does not yet value legs separately.
Providing the request is successful, the response:
Confirms the globally-unique LUID for the instrument.
Generates extra fields that are stored as part of the instrument definition and can be filtered on.
Supplies default values for fields not explicitly specified in the request:
Booking a transaction to establish a position
Once an instrument is mastered, we can book a transaction to record the acquisition of a quantity in a suitable portfolio, for example by calling the BatchUpsertTransactions
API as follows:
Note the following:
The
instrumentIdentifiers
field uses theClientInternal
identifier to resolve the transaction to the correct CDX instrument (but it could use the LUID).The
type
field invokes a customBuyProtection
transaction type to confer a particular economic impact on the transaction (see below).The
units
field specifies the purchase amount, in this case100000
.The
transactionPrice
object records the market price as a rate, calculated from a par-like Markit price as(100 - price) / 100
. For example:For an above-par price of 102, the rate would be
(100 - 102) / 100 = -0.02
. Note the impact of a transaction for an above-par price is to both receive cash and accrued interest (that is, a rebate on the premium for purchasing part-way through a period).For a below-par price of 98, the rate would be
(100 - 98) / 100 = 0.02
. Note the impact of a transaction for a below-par price is to pay cash but receive accrued interest.
The
totalConsideration
object:Sets the settlement currency to
EUR
.Records a total consideration for the transaction of
100000 * -0.02 = -2000
. LUSID uses this amount in the calculation of holding cost.
Currently, we must calculate the accrued interest manually and record a negative amount using the
Transaction/default/BondInterest
system property, in this case-1270
. In future, LUSID may automate this calculation.
Note: This example assumes the transaction, settlement and portfolio currencies are all the same. If not, you can specify exchange rates.
We can call the SetTransactionType API to create a BuyProtection
transaction type as follows:
Note the following:
The
StockMovement
uses aProtection
custom side (see below) to establish a holding in the CDX instrument with a number of units at a particular cost.The
CashCommitment
movement uses the built-inSide2
to decrease a currency holding by the total consideration.The
Carry
movement uses the built-inSide1
to record a flow of value out of the CDX instrument in an A2B report.
We can call the SetSideDefinition API to create a Protection
custom side as follows:
This is the same as the built-in Side1
except the amount
field is set to BaseOnSeparateBondInterest
instead of Txn:TradeAmount
.
Note this means that LUSID calculates holding cost as total consideration minus Transaction/default/BondInterest
. If this latter amount is signed negative then LUSID decreases the cost of the CDX instrument, to reflect the recipt of accrued interest.
Confirming positions on the settlement date
We can mavigate to Portfolio Management > Holdings in the LUSID web app to call the GetHoldings API on the settlement date and, since we bought for an above-par price of 102, see that we have:
100,000 units of the CDX instrument holding with a negative cost calculated as total consideration minus accrued interest:
-2000 - (-1270) = -730
A EUR currency holding with a positive amount reflecting cash received (because we bought above par):
If instead we had bought at a below-par price of 98, we would have:
100,000 units of the CDX instrument holding with a positive cost:
2000 - (-1270) = 3270
A EUR currency holding with a negative amount reflecting cash paid (because we bought below par):
Auditing LUSID’s calculations of transaction amounts
We can navigate to Portfolio Management > Transactions in Output mode to call the BuildTransactions API with a suitable window to examine the output transaction that generated the above-par holdings, for example:
Valuing your position
To value your position, work through our valuation checklist.
The following pricing models are available for instruments of type CdsIndex
. Note your choice impacts the market data required and the composition of your recipe.
Pricing model | Notes |
---|---|
| Recommended. This pricing model extends |
| This is currently the default. We recommend changing it to |
For example, to value our holding using CdsLookupPricer
on 1 October 2024:
Load a Markit price into a particular quote scope (specified in the URL) with
effectiveAt
as the valuation date (note there is no need to specify a scale factor):Create a recipe to locate this market data and change the pricing model, for example:
Generate a valuation report with appropriate metrics, for example:
Assessing risk
For more on how LUSID calculates exposure, see this article.
LUSID supports both analytic and bump and valuation mechanisms for assessing risk; contact Technical Support if you need more information.
Monitoring the lifecycle of the instrument
A CdsIndex
‘expires’ on the maturity date specified in the instrument economic definition.
Note: An instrument in LUSID is still available post-expiry, although the valuation is zero. If you set your holding to zero it no longer appears in reports unless you are deliberately backdating.
Handling automatic lifecycle events
LUSID is transitioning to a system where it automatically emits lifecycle events for supported instruments. We provide default transaction templates that you can use as-is to automatically generate transactions in portfolios with holdings, and recommendations for transaction types that deliver appropriate economic impacts for those generated transactions.
The following events are available for CdsIndex
:
Instrument event type | Event emission criteria | If emitted, default transaction template generates… | Recommendations for transaction types |
---|---|---|---|
| This event is automatically emitted by LUSID each time a premium is due. | A transaction for the premium payment amount. | |
| This event is not automatically emitted by LUSID. It can be triggered by manually loading a | A transaction for the protection payout amount. | |
| This event is automatically emitted by LUSID on the maturity date of the instrument. | A transaction for all the units in the holding at a cost of zero. |
Manually loading settlement transactions
If you do not want to turn on automatic instrument lifecycle events you can continue to monitor upcoming cashflows using Portfolio Management > CashLadder in the LUSID web app, or by calling the GetPortfolioCashLadder API directly.
You can call the GetUpsertablePortfolioCashFlows API to return imminent cashflows as upsertable DTOs ready to manually load into LUSID as input transactions.