Bugfix/fix exception in portfolio calculator (#4109)

* Fix exception in portfolio calculator

* Update changelog
pull/4110/head
Thomas Kaul 3 months ago committed by GitHub
parent 17ffb29275
commit ebef361d63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Fixed an exception in the caching of the portfolio snapshot in the portfolio calculator
## 2.126.0 - 2024-12-07
### Added

@ -176,6 +176,7 @@ export abstract class PortfolioCalculator {
if (!transactionPoints.length) {
return {
currentValueInBaseCurrency: new Big(0),
errors: [],
hasErrors: false,
historicalData: [],
positions: [],

Loading…
Cancel
Save