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
parent
commit
0e94112dc7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 5
      apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts

1
CHANGELOG.md

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### 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` - Upgraded `prisma` from version `5.6.0` to `5.7.0`
## 2.29.0 - 2023-12-09 ## 2.29.0 - 2023-12-09

5
apps/api/src/services/data-provider/data-enhancer/trackinsight/trackinsight.service.ts

@ -13,6 +13,7 @@ export class TrackinsightDataEnhancerService implements DataEnhancerInterface {
private static countriesMapping = { private static countriesMapping = {
'Russian Federation': 'Russia' 'Russian Federation': 'Russia'
}; };
private static holdingsWeightTreshold = 0.85;
private static sectorsMapping = { private static sectorsMapping = {
'Consumer Discretionary': 'Consumer Cyclical', 'Consumer Discretionary': 'Consumer Cyclical',
'Consumer Defensive': 'Consumer Staples', '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 // Skip if data is inaccurate
return response; return response;
} }

Loading…
Cancel
Save