Browse Source

Merge branch 'main' into bugfix/market-data-storage-in-data-provider-service

pull/7814/head
Thomas Kaul 3 days ago
committed by GitHub
parent
commit
a93de8a789
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 4
      apps/api/src/app/portfolio/portfolio.service.ts

1
CHANGELOG.md

@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Fixed the data provider information in the holding detail dialog
- Fixed the storage of the market data in the data provider service to store only the newly fetched quotes - Fixed the storage of the market data in the data provider service to store only the newly fetched quotes
- Fixed the immediate expiration of a portfolio snapshot with errors - Fixed the immediate expiration of a portfolio snapshot with errors
- Fixed the missing country mapping of _Congo (Dem. Rep. of the)_ and _Congo (Rep. of)_ in the _Financial Modeling Prep_ service - Fixed the missing country mapping of _Congo (Dem. Rep. of the)_ and _Congo (Rep. of)_ in the _Financial Modeling Prep_ service

4
apps/api/src/app/portfolio/portfolio.service.ts

@ -1094,7 +1094,9 @@ export class PortfolioService {
userId: assetProfile.userId userId: assetProfile.userId
}, },
averagePrice: averagePrice.toNumber(), averagePrice: averagePrice.toNumber(),
dataProviderInfo: portfolioCalculator.getDataProviderInfos()?.[0], dataProviderInfo: this.dataProviderService
.getDataProvider(dataSource)
.getDataProviderInfo(),
dividendInBaseCurrency: dividendInBaseCurrency.toNumber(), dividendInBaseCurrency: dividendInBaseCurrency.toNumber(),
dividendYieldPercent: dividendYieldPercent.toNumber(), dividendYieldPercent: dividendYieldPercent.toNumber(),
dividendYieldPercentWithCurrencyEffect: dividendYieldPercentWithCurrencyEffect:

Loading…
Cancel
Save