Browse Source
Merge branch 'main' into bugfix/fix-buying-power-calculation-with-emergency-fund-tag
pull/1713/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
7 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/yahoo-finance/yahoo-finance.service.ts
|
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Beautified the ETF names in the asset profile |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the buying power calculation if no emergency fund is set but an activity is tagged as _Emergency Fund_ |
|
|
@ -1344,7 +1348,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Beautified the ETF names in the symbol profile |
|
|
|
- Beautified the ETF names in the asset profile |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
@ -441,8 +441,10 @@ export class YahooFinanceService implements DataProviderInterface { |
|
|
|
let name = longName; |
|
|
|
|
|
|
|
if (name) { |
|
|
|
name = name.replace('Amundi Index Solutions - ', ''); |
|
|
|
name = name.replace('iShares ETF (CH) - ', ''); |
|
|
|
name = name.replace('iShares III Public Limited Company - ', ''); |
|
|
|
name = name.replace('iShares V PLC - ', ''); |
|
|
|
name = name.replace('iShares VI Public Limited Company - ', ''); |
|
|
|
name = name.replace('iShares VII PLC - ', ''); |
|
|
|
name = name.replace('Multi Units Luxembourg - ', ''); |
|
|
|