Browse Source

Bugfix/country mapping of Virgin Islands (British) in FMP service (#7776)

* Fix the missing country mapping of Virgin Islands

* Update changelog
pull/7778/head
Thomas Kaul 1 week ago
committed by GitHub
parent
commit
f9cf373890
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 3
      apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts

1
CHANGELOG.md

@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed the cash positions being included in the by continent, by country and by sector charts on the allocations page and the public page - Fixed the cash positions being included in the by continent, by country and by sector charts on the allocations page and the public page
- Fixed the allocations in percentage exceeding 100% in the restricted view - Fixed the allocations in percentage exceeding 100% in the restricted view
- Fixed the portfolio calculation for holdings with activities before the first known historical market price by falling back to the unit price of the activity - Fixed the portfolio calculation for holdings with activities before the first known historical market price by falling back to the unit price of the activity
- Fixed the missing country mapping of _Virgin Islands (British)_ in the _Financial Modeling Prep_ service
## 3.64.0 - 2026-08-30 ## 3.64.0 - 2026-08-30

3
apps/api/src/services/data-provider/financial-modeling-prep/financial-modeling-prep.service.ts

@ -59,7 +59,8 @@ export class FinancialModelingPrepService
Macau: 'MO', Macau: 'MO',
'Russian Federation': 'RU', 'Russian Federation': 'RU',
'Taiwan (Province of China)': 'TW', 'Taiwan (Province of China)': 'TW',
Turkey: 'TR' Turkey: 'TR',
'Virgin Islands (British)': 'VG'
}; };
private readonly logger = new Logger(FinancialModelingPrepService.name); private readonly logger = new Logger(FinancialModelingPrepService.name);

Loading…
Cancel
Save