Browse Source
Bugfix/add missing country mapping for Macau in Yahoo Finance data enhancer (#7620)
* Add missing mapping for Macau
* Update changelog
pull/7618/head^2
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/data-enhancer/yahoo-finance/yahoo-finance.service.ts
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
- Fixed the cash balance update related to activities in a custom currency |
|
|
- Fixed the cash balance update related to activities in a custom currency |
|
|
- Fixed the missing mapping for Czech Republic in the country weightings of the _Financial Modeling Prep_ service |
|
|
- Fixed the missing mapping for Czech Republic in the country weightings of the _Financial Modeling Prep_ service |
|
|
|
|
|
- Fixed the missing mapping for Macau in the data enhancer for asset profile data via _Yahoo Finance_ |
|
|
|
|
|
|
|
|
## 3.50.0 - 2026-08-13 |
|
|
## 3.50.0 - 2026-08-13 |
|
|
|
|
|
|
|
|
|
|
|
@ -26,6 +26,7 @@ import type { Price } from 'yahoo-finance2/esm/src/modules/quoteSummary-iface'; |
|
|
export class YahooFinanceDataEnhancerService implements DataEnhancerInterface { |
|
|
export class YahooFinanceDataEnhancerService implements DataEnhancerInterface { |
|
|
private static countriesMapping = { |
|
|
private static countriesMapping = { |
|
|
'Czech Republic': 'CZ', |
|
|
'Czech Republic': 'CZ', |
|
|
|
|
|
Macau: 'MO', |
|
|
Turkey: 'TR' |
|
|
Turkey: 'TR' |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|