2021-11-22 21:28:32 +01:00
|
|
|
import { HistoricalDataItem } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-position-detail.interface';
|
|
|
|
|
|
|
|
export interface PortfolioChart {
|
2021-12-27 12:14:41 +01:00
|
|
|
hasError: boolean;
|
2021-11-22 21:28:32 +01:00
|
|
|
isAllTimeHigh: boolean;
|
|
|
|
isAllTimeLow: boolean;
|
|
|
|
chart: HistoricalDataItem[];
|
|
|
|
}
|