Browse Source
Feature/adjust holdings weight threshold in trackinsight data enhancer (#2742)
* Adjust holdings weight threshold
* Update changelog
pull/2743/head
Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts
|
|
@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Adjusted the threshold to skip the data enhancement (_Trackinsight_) if data is inaccurate |
|
|
|
- Upgraded `prisma` from version `5.6.0` to `5.7.0` |
|
|
|
|
|
|
|
## 2.29.0 - 2023-12-09 |
|
|
|
|
|
@ -13,6 +13,7 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface { |
|
|
|
private static countriesMapping = { |
|
|
|
'Russian Federation': 'Russia' |
|
|
|
}; |
|
|
|
private static holdingsWeightTreshold = 0.85; |
|
|
|
private static sectorsMapping = { |
|
|
|
'Consumer Discretionary': 'Consumer Cyclical', |
|
|
|
'Consumer Defensive': 'Consumer Staples', |
|
|
@ -113,7 +114,9 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
if (holdings?.weight < 0.95) { |
|
|
|
if ( |
|
|
|
holdings?.weight < TrackinsightDataEnhancerService.holdingsWeightTreshold |
|
|
|
) { |
|
|
|
// Skip if data is inaccurate
|
|
|
|
return response; |
|
|
|
} |
|
|
|