diff --git a/CHANGELOG.md b/CHANGELOG.md index b67cd0f3e..afb2151e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Disabled the text hover effect in the chart of the holdings tab on the home page (experimental) - Improved the usability to customize the rule thresholds in the _X-ray_ section by introducing units (experimental) +- Switched to adjusted market prices (splits and dividends) in the get historical functionality of the _EOD Historical Data_ service - Improved the language localization for German (`de`) ### Fixed diff --git a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts index 3a840340e..78325d447 100644 --- a/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts +++ b/apps/api/src/services/data-provider/eod-historical-data/eod-historical-data.service.ts @@ -163,10 +163,10 @@ export class EodHistoricalDataService implements DataProviderInterface { ).json(); return response.reduce( - (result, { close, date }) => { - if (isNumber(close)) { + (result, { adjusted_close, date }) => { + if (isNumber(adjusted_close)) { result[this.convertFromEodSymbol(symbol)][date] = { - marketPrice: close + marketPrice: adjusted_close }; } else { Logger.error(