-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-api-repo-trade-func.rosetta
457 lines (357 loc) · 12.3 KB
/
product-api-repo-trade-func.rosetta
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
namespace cdm.api.repo : <"API for access to repo components.">
version "${project.version}"
import cdm.base.*
import cdm.base.math.*
import cdm.base.datetime.*
import cdm.base.staticdata.party.*
import cdm.base.staticdata.identifier.*
import cdm.base.staticdata.asset.common.*
import cdm.observable.asset.*
import cdm.observable.common.*
import cdm.observable.event.*
import cdm.product.template.*
import cdm.product.asset.*
import cdm.product.common.schedule.*
import cdm.product.common.settlement.*
import cdm.product.collateral.*
import cdm.event.common.*
import cdm.legaldocumentation.common.*
import cdm.legaldocumentation.master.*
import cdm.event.workflow.*
import cdm.event.position.*
import cdm.event.common.*
import cdm.product.template.*
import cdm.api.repo.common.*
func GetTradeUTI:
inputs:
trade Trade (1..1)
output:
uti string (1..1)
alias tradeIdentiferObject:
trade->tradeIdentifier
alias utiElement:
trade->tradeIdentifier
then filter identifierType = TradeIdentifierTypeEnum->UniqueTransactionIdentifier
then only-element
set uti:
utiElement-> assignedIdentifier->identifier first
func SetTradeUTI:
inputs:
before Trade (1..1)
uti string (1..1)
output:
after Trade (1..1)
set after:before
set after->tradeIdentifier->identifierType:TradeIdentifierTypeEnum->UniqueTransactionIdentifier
set after->tradeIdentifier->assignedIdentifier->identifier:uti
func GetRepoRate:
inputs:
trade Trade (1..1)
output:
repoRate string (1..1)
alias fixedRate:
trade->tradableProduct->tradeLot->priceQuantity
alias currentRatePrice: <"Filter interest rate price and make it into a single element">
fixedRate
extract price
then flatten
then filter priceType = PriceTypeEnum -> InterestRate
then only-element
set repoRate:
currentRatePrice -> value to-string
func SetRepoRate:
inputs:
before Trade (1..1)
repoRate number (1..1)
output:
after Trade (1..1)
set after:before
set after->tradableProduct->tradeLot->priceQuantity->price->priceType:PriceTypeEnum -> InterestRate
set after->tradableProduct->tradeLot->priceQuantity->price->value:repoRate
func GetFloatingRateIndexSpread:
inputs:
trade Trade (1..1)
output:
spread number (1..1)
alias floatingRate:
trade->tradableProduct->tradeLot->priceQuantity
alias currentRatePrice: <"Filter interest rate price and make it into a single element">
floatingRate
extract price
then flatten
then filter priceType = PriceTypeEnum -> InterestRate
then only-element
alias IsFloatingRate:
trade->tradableProduct->product->contractualProduct->economicTerms->payout->interestRatePayout->rateSpecification->floatingRate exists
condition IsFloatingRateCondition:
trade->tradableProduct->product->contractualProduct->economicTerms->payout->interestRatePayout->rateSpecification->floatingRate exists
set spread:
if IsFloatingRate
then currentRatePrice
then extract [ item -> composite]
then filter [ item -> operandType = PriceOperandEnum -> ForwardPoint ] //Enum to be replaced with Spread
then extract [ item -> operand ] * 100.0
func GetFloatingRateIndexPrice: //To be done
inputs:
trade Trade (1..1)
output:
spread number (1..1)
alias floatingRate:
trade->tradableProduct->tradeLot->priceQuantity
alias currentRatePrice: <"Filter interest rate price and make it into a single element">
floatingRate
extract price
then flatten
then filter priceType = PriceTypeEnum -> InterestRate
then only-element
alias IsFloatingRate:
trade->tradableProduct->product->contractualProduct->economicTerms->payout->interestRatePayout->rateSpecification->floatingRate exists
condition IsFloatingRateCondition:
trade->tradableProduct->product->contractualProduct->economicTerms->payout->interestRatePayout->rateSpecification->floatingRate exists
set spread:
currentRatePrice
then extract [ item -> composite]
then filter [ item -> operandType = PriceOperandEnum -> ForwardPoint ] //Enum to be replaced with Spread
then extract [ item -> baseValue] * 100.0
func GetPurchasePrice:
inputs:
trade Trade (1..1)
output:
value number (0..*)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> price ]
then flatten
then filter [ item -> perUnitOf->financialUnit = FinancialUnitEnum->ContractualProduct ]
then extract [ item -> composite -> baseValue ]
func GetRePurchasePrice:
inputs:
trade Trade (1..1)
output:
value number (0..*)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> price ]
then flatten
then filter [ item -> perUnitOf->financialUnit = FinancialUnitEnum->ContractualProduct ]
then extract [ item -> value]
func GetRepoInterest:
inputs:
trade Trade (1..1)
output:
value number (0..*)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> price ]
then flatten
then filter [ item -> perUnitOf->financialUnit = FinancialUnitEnum->ContractualProduct ]
then extract [ item -> composite -> operand]
func GetCollateralQuantity:
inputs:
trade Trade (1..1)
output:
value number (0..1)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> quantity ]
then flatten
then extract [ item -> value ]
then last
func GetCollateralDirtyPrice:
inputs:
trade Trade (1..1)
output:
value number (0..*)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> price ]
then flatten
then filter [ item -> priceType = PriceTypeEnum -> AssetPrice ]
then extract [ item -> value ] * 100.0
func GetCollateralCleanPrice:
inputs:
trade Trade (1..1)
output:
value number (0..*)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> price ]
then flatten
then filter [ item -> priceType = PriceTypeEnum -> AssetPrice ]
then extract [ item -> composite]
then filter [ item -> operandType = PriceOperandEnum -> AccruedInterest ]
then extract [ item -> baseValue ] * 100.0
func GetCollateralAccruedInterestPrice:
inputs:
trade Trade (1..1)
output:
value number (0..*)
set value:
trade->tradableProduct -> tradeLot only-element -> priceQuantity
extract [ item -> price ]
then flatten
then filter [ item -> priceType = PriceTypeEnum -> AssetPrice ]
then extract [ item -> composite]
then filter [ item -> operandType = PriceOperandEnum -> AccruedInterest ]
then extract [ item -> operand ] * 100.0
func GetCollateralAccruedInterest: //To be done
inputs:
trade Trade (1..1)
output:
value number (0..*)
alias collateralQuantity:
GetCollateralQuantity(trade)
alias collateralAcrruedPrice:
GetCollateralAccruedInterestPrice(trade)
set value:
collateralQuantity * collateralAcrruedPrice
func GetCollateralMarginAdjustedPrice: //To be done
inputs:
trade Trade (1..1)
output:
value number (0..*)
alias dirtyPrice:
GetCollateralDirtyPrice(trade)
alias margin:
GetMargin(trade->tradableProduct->product)
set value:
dirtyPrice * margin
func GetHairCut:
inputs:
product Product (1..1)
output:
haircut number (1..*)
set haircut:
product->contractualProduct->economicTerms->collateral->collateralPortfolio->collateralPosition->product->contractualProduct->economicTerms->collateral->collateralProvisions->eligibleCollateral->treatment->valuationTreatment->haircutPercentage * 100.0
func SetHairCut:
inputs:
before Product (1..1)
haircut number (1..1)
output:
after Product (1..1)
set after:before
set after->contractualProduct->economicTerms->collateral->collateralPortfolio->collateralPosition->product->contractualProduct->economicTerms->collateral->collateralProvisions->eligibleCollateral->treatment->valuationTreatment->haircutPercentage:haircut
func GetMargin:
inputs:
product Product (1..1)
output:
margin number (1..*)
set margin:
product->contractualProduct->economicTerms->collateral->collateralPortfolio->collateralPosition->product->contractualProduct->economicTerms->collateral->collateralProvisions->eligibleCollateral->treatment->valuationTreatment->marginPercentage * 100.0
func GetAgreementType:
inputs:
contractDetails ContractDetails (1..1)
output:
agreementType string (1..1)
set agreementType:
contractDetails->documentation->legalAgreementIdentification->agreementName->masterAgreementType first to-string
func SetAgreementType:
inputs:
before ContractDetails (1..1)
agreementType MasterAgreementTypeEnum (1..1)
output:
after ContractDetails (1..1)
set after:before
set after->documentation->legalAgreementIdentification->agreementName->masterAgreementType:agreementType
func GetAgreementDate:
inputs:
trade Trade (1..1)
output:
agreementDate string (1..1)
set agreementDate:
trade->contractDetails->documentation->legalAgreementIdentification->vintage first to-string
func SetAgreementDate:
inputs:
before ContractDetails (1..1)
agreementVintage int(1..1)
output:
after ContractDetails (1..1)
set after:before
set after->documentation->legalAgreementIdentification->vintage:agreementVintage
func GetExecutionVenueId:
inputs:
trade Trade (1..1)
output:
venueId string (1..1)
set venueId:
trade->executionDetails->executionVenue->entityId first to-string
func GetExecutionVenueName:
inputs:
trade Trade (1..1)
output:
venueName string (1..1)
set venueName:
trade->executionDetails->executionVenue->name to-string
func GetTradeDirection:
inputs:
trade Trade (1..1)
party Party (1..1)
output:
direction string (1..1)
alias IsBuyer:
trade
extract [item -> partyRole]
then filter [item -> role = PartyRoleEnum -> Buyer]
set direction:
if (IsBuyer exists)
then "BUY"
else "SELL"
func Create_FixedRateFixedTermRepoTrade:
inputs:
tradeDate date (1..1)
purchaseDate date (1..1)
repurchaseDate date (1..1)
uti string (1..1)
buyer Party (1..1)
seller Party (1..1)
repoRate number (1..1)
product Product (1..1)
purchasePrice number (1..1)
repruchasePrice number (1..1)
executionDetails ExecutionDetails (1..1)
contractDetails ContractDetails (1..1)
output:
trade Trade (1..1)
set trade:SetTradeDate(trade,tradeDate)
set trade:SetTradeUTI(trade,uti)
set trade:SetBuyer(trade, buyer)
set trade:SetSeller(trade,seller)
set trade:SetRepoRate(trade,repoRate)
set trade->tradableProduct->product:product
set trade->executionDetails:executionDetails
set trade->contractDetails:contractDetails
func Create_ExecutedRepoTradeState:
inputs:
trade Trade (1..1)
output:
tradeState TradeState (1..1)
set tradeState->trade:trade
set tradeState->state->positionState:PositionStatusEnum->Executed
func Create_RepoExecutionInstruction:
inputs:
trade Trade (1..1)
output:
instruction Instruction (1..1)
set instruction->before:empty
set instruction->primitiveInstruction:Create_RepoExecutionPrimitiveInstruction(trade)
func Create_RepoExecutionPrimitiveInstruction:
inputs:
trade Trade (1..1)
output:
exInst PrimitiveInstruction (1..1)
set exInst->execution->product:trade->tradableProduct->product
set exInst->execution->tradeDate:trade->tradeDate
set exInst->execution->parties:trade->party
set exInst->execution->partyRoles:trade->partyRole
set exInst->execution->executionDetails:trade->executionDetails
set exInst->execution->tradeIdentifier:trade->tradeIdentifier
func Create_RepoBusinessEvent:
inputs:
eventDate date (1..1)
effectiveDate date (1..1)
instruction Instruction (1..1)
output:
businessEvent BusinessEvent (1..1)
set businessEvent->instruction:instruction
set businessEvent->effectiveDate:effectiveDate
set businessEvent->eventDate:eventDate