-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Security Lending Qualification function issue #2161
Comments
@valdensmith - This is in relation to the @iansloyan - we discussed this issue with the qualification function the other day. I think we probably need to have a discussion about how this gets resolved. |
@minesh-s-patel - as discussed, the issue with the securities lending qualification |
I don't think there is a model structure for repo and sec lending that is deterministic unless we add to the model what is being lent, security vs cash. Collateral may be cash and/or securities in both scenarios although it never occurs in repo unless it's against a margin account holding cash but not at the transaction level. The other possibility would be to enforce a taxonomy definition. CFI codes for repo start with LR and sec lending LS. I would prefer not to use this since I believe that taxonomies should be derived from the object and not the other way around. Another option is the legal agreement. All transactions are backed by some form of legal agreement even if it's not a standardized MRA or MSLA, as it may be a private agreement, but at least there is some type of agreement. There is also the accounting questions, not all repos even if they are traded on a GMRA are consider repo for accounting purposes. So this raises the question, what are we trying to qualify? As a base case, repo transactions currently use external key enumerations for purchase date and repurchase date. This terminology would not apply to sec lending, loans and swaps so this would be a possible solution, notwithstanding the need to define what is being lent and what is collateral. |
Agreed, there is now no way to differentiate between a repo and securities lending trade in the model. We used to be able to qualify a securities lending trade which we now cannot. I ran through this with some SMEs and the consensus was inline with what has been mentioned here so far - we may end up needing some specific flag that can set whether the trade is a repo, securities lending or derivatives trade. |
After further consideration I believe that repo qualification will use the productQualifier string and set it to repurchase_agreement or buy/sell_back_agreement among other fields that will be compared for completeness. The reason for this is that we need to support repo and buy/sell-back transactions traded on a GMRA or MMRA, and the same types that are undocumented. So there is no structural or legal agreement definition that can uniquely determine the correct type of transaction without knowing the intent of the counterparties. The original intent of productQualifier was to derive the product from the model which could be used in the case where the model does agree with the productQualifier. |
Hi @tomhealey-icma, |
Chris and I had thought the best way to resolve the qualification problem would be to add productDefinitionEnum to productTaxonomy. After attempting this I found that all the qualification functions are based on economicTerms so product level attributes will not work. To resolve this we need to consider new qualification process that include product level attributes like productDefinition and legal agreements. Also I noticed that setQualifier has hard coded the source to ISDA. We need to be able to set the source based on the qualification function result. |
@tomhealey-icma @chrisisla As discussed we will look to address this in 2 steps:
I propose that the PR on 1) should be closing this issue. |
I would suggest SecuritiesFinanceAgreement. Also related to this change is the productTaxonomy:source values which will change from ISDA to ICMA for repo and BuySellBack and ISLA for SecLending. Additionally, all the ICMA PRs and ISLA PRs discussed and any related changes plus the repo and sec lending test cases input files and output files. Further to the strategic change, this was agreed to be included in a production release as expeditiously as possible and no later than year end. |
@chrisisla you also ok with that name? Personally I would have removed the term "Agreement", which has a legal connotation, from the qualifier if we're saying that this level of qualification applies at the economic terms level only. I would also use "Security" singular rather than "Securities" |
There is no way to implement this taxonomy source switch in the current state of affairs. This will have to come from the strategic qualification work. |
Let's re-discuss once we've been able to assess the work and have estimates |
My preference would be "SecuritiesFinance" as that looks to be the commonly used term to cover both stock loan and repo. I know we try to use singular wherever possible in the model but I think this term is more appropriate - plus it is going to be removed again in the next few weeks so is probably not a major issue 😉 I would not add "agreement" to the name as we're describing the product. I agree that we should get the strategic fix into the model asap, let me know if you need any input from myself during your assessment Leo 👍 |
In PR#2084 a request was made to change the cardinality of
collateralProvisions -> collateralType
from 1..1 to 0..1. For securities lending trades thecollateralType
needs to be specified as it cannot be inferred from other details on the trade. The suggestion was that we could use theQualify_SecurityLendingAgreement
function to put a condition intocollateralProvisions
that would makecollateralType
mandatory for securities lending trades.While investigating the feasibility of this request it was found that recent changes to the
Qualify_SecurityLendingAgreement
function meant that it was no longer able to explicitly qualify a trade as being a securities lending trade – it would also qualify a repo trade as a securities lending trade.Prior to the changes made to the model on January 17th the function used the presence of the
securityFinancePayout
to qualify a securities lending trade (snippet taken from github version on January 11th):From January 17th the
securityFinancePayout
was replaced withassetPayout
. The function was updated to now be as follows:Unfortunately, the logic in place now will also qualify a repo as a securities lending trade.
Additionally, this new version of the qualification will only work for a securities lending trade against cash. For a trade against non-cash collateral there would be two instances of
assetPayout
, one for the securities being loaned and one for the securities being used as collateral.We now need to investigate how we can qualify a securities lending trade, because this does not work in the current version of the model.
Once we have got the qualification working then we should be able to update the cardinality of the
collateralType
.Seeing as the model can no longer differentiate between securities lending and repo trades can I ask that we prioritise the investigation and resolution of this issue.
The text was updated successfully, but these errors were encountered: