Browse Source

Feature/clean up all time high and low from performance endpoint (#551)

* Remove isAllTimeHigh / isAllTimeLow

* Update changelog
pull/553/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
e518bc3779
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 8
      apps/api/src/app/portfolio/portfolio.service.ts
  3. 2
      libs/common/src/lib/interfaces/portfolio-performance.interface.ts

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
### Changed
- Removed the redundant all time high and all time low from the performance endpoint
### Fixed ### Fixed
- Fixed the symbol conversion from _Yahoo Finance_ including a hyphen - Fixed the symbol conversion from _Yahoo Finance_ including a hyphen

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

@ -693,9 +693,7 @@ export class PortfolioService {
currentGrossPerformancePercent: 0, currentGrossPerformancePercent: 0,
currentNetPerformance: 0, currentNetPerformance: 0,
currentNetPerformancePercent: 0, currentNetPerformancePercent: 0,
currentValue: 0, currentValue: 0
isAllTimeHigh: false,
isAllTimeLow: false
} }
}; };
} }
@ -728,9 +726,7 @@ export class PortfolioService {
currentGrossPerformancePercent, currentGrossPerformancePercent,
currentNetPerformance, currentNetPerformance,
currentNetPerformancePercent, currentNetPerformancePercent,
currentValue, currentValue
isAllTimeHigh: true,
isAllTimeLow: false
} }
}; };
} }

2
libs/common/src/lib/interfaces/portfolio-performance.interface.ts

@ -5,6 +5,4 @@ export interface PortfolioPerformance {
currentNetPerformance: number; currentNetPerformance: number;
currentNetPerformancePercent: number; currentNetPerformancePercent: number;
currentValue: number; currentValue: number;
isAllTimeHigh: boolean;
isAllTimeLow: boolean;
} }

Loading…
Cancel
Save