2021-04-13 21:53:58 +02:00
|
|
|
<div class="container">
|
2021-08-15 09:55:46 +02:00
|
|
|
<div class="row">
|
2021-04-13 21:53:58 +02:00
|
|
|
<div class="col">
|
2021-08-07 07:12:40 +02:00
|
|
|
<h3 class="d-flex justify-content-center mb-3" i18n>Allocations</h3>
|
2021-04-13 21:53:58 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="proportion-charts row">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-05-02 21:18:52 +02:00
|
|
|
<mat-card-title i18n>By Account</mat-card-title>
|
2021-04-13 21:53:58 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-portfolio-proportion-chart
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
|
|
[isInPercent]="hasImpersonationId"
|
2021-08-22 22:19:10 +02:00
|
|
|
[keys]="['name']"
|
2021-04-13 21:53:58 +02:00
|
|
|
[locale]="user?.settings?.locale"
|
2021-05-02 21:18:52 +02:00
|
|
|
[positions]="accounts"
|
2021-04-13 21:53:58 +02:00
|
|
|
></gf-portfolio-proportion-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-08-08 19:27:58 +02:00
|
|
|
<mat-card-title i18n>By Asset Class</mat-card-title>
|
2021-04-13 21:53:58 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-portfolio-proportion-chart
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
|
|
[isInPercent]="true"
|
2021-08-22 22:19:10 +02:00
|
|
|
[keys]="['assetClass', 'assetSubClass']"
|
2021-04-13 21:53:58 +02:00
|
|
|
[locale]="user?.settings?.locale"
|
|
|
|
[positions]="positions"
|
|
|
|
></gf-portfolio-proportion-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
2021-06-06 15:31:28 +02:00
|
|
|
<div class="col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-08-08 19:27:58 +02:00
|
|
|
<mat-card-title i18n>By Currency</mat-card-title>
|
2021-06-06 15:31:28 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-portfolio-proportion-chart
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
2021-06-08 21:59:46 +02:00
|
|
|
[isInPercent]="true"
|
2021-08-22 22:19:10 +02:00
|
|
|
[keys]="['currency']"
|
2021-06-06 15:31:28 +02:00
|
|
|
[locale]="user?.settings?.locale"
|
2021-06-08 21:59:46 +02:00
|
|
|
[positions]="positions"
|
2021-06-06 15:31:28 +02:00
|
|
|
></gf-portfolio-proportion-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-06-16 17:05:43 +02:00
|
|
|
<mat-card-title i18n>By Sector</mat-card-title>
|
2021-06-06 15:31:28 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-portfolio-proportion-chart
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
2021-06-16 17:05:43 +02:00
|
|
|
[isInPercent]="false"
|
2021-08-22 22:19:10 +02:00
|
|
|
[keys]="['name']"
|
2021-06-06 15:31:28 +02:00
|
|
|
[locale]="user?.settings?.locale"
|
2021-06-16 17:05:43 +02:00
|
|
|
[maxItems]="10"
|
|
|
|
[positions]="sectors"
|
2021-06-06 15:31:28 +02:00
|
|
|
></gf-portfolio-proportion-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
2021-04-13 21:53:58 +02:00
|
|
|
<div class="col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-06-08 21:59:46 +02:00
|
|
|
<mat-card-title i18n>By Continent</mat-card-title>
|
2021-04-13 21:53:58 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-portfolio-proportion-chart
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
2021-06-08 21:59:46 +02:00
|
|
|
[isInPercent]="false"
|
2021-08-22 22:19:10 +02:00
|
|
|
[keys]="['name']"
|
2021-04-13 21:53:58 +02:00
|
|
|
[locale]="user?.settings?.locale"
|
2021-06-08 21:59:46 +02:00
|
|
|
[positions]="continents"
|
2021-04-13 21:53:58 +02:00
|
|
|
></gf-portfolio-proportion-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-06-08 21:59:46 +02:00
|
|
|
<mat-card-title i18n>By Country</mat-card-title>
|
2021-04-13 21:53:58 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-portfolio-proportion-chart
|
2021-08-22 22:19:10 +02:00
|
|
|
[keys]="['name']"
|
2021-04-13 21:53:58 +02:00
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
2021-06-08 21:59:46 +02:00
|
|
|
[isInPercent]="false"
|
2021-04-13 21:53:58 +02:00
|
|
|
[locale]="user?.settings?.locale"
|
2021-06-14 14:18:02 +02:00
|
|
|
[maxItems]="10"
|
2021-06-08 21:59:46 +02:00
|
|
|
[positions]="countries"
|
2021-04-13 21:53:58 +02:00
|
|
|
></gf-portfolio-proportion-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-06-08 21:59:46 +02:00
|
|
|
<div class="row world-map-chart">
|
|
|
|
<div class="col-lg">
|
|
|
|
<mat-card class="mb-3">
|
|
|
|
<mat-card-header class="w-100">
|
2021-06-09 20:32:39 +02:00
|
|
|
<mat-card-title i18n>Regions</mat-card-title>
|
2021-06-08 21:59:46 +02:00
|
|
|
<gf-toggle
|
|
|
|
[defaultValue]="period"
|
|
|
|
[isLoading]="false"
|
|
|
|
[options]="periodOptions"
|
|
|
|
(change)="onChangePeriod($event.value)"
|
|
|
|
></gf-toggle>
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
|
|
|
<gf-world-map-chart
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
|
|
[countries]="countries"
|
|
|
|
></gf-world-map-chart>
|
|
|
|
</mat-card-content>
|
|
|
|
</mat-card>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-08-15 09:55:46 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg">
|
|
|
|
<gf-positions-table
|
|
|
|
[baseCurrency]="user?.settings?.baseCurrency"
|
|
|
|
[deviceType]="deviceType"
|
|
|
|
[locale]="user?.settings?.locale"
|
|
|
|
[positions]="positionsArray"
|
|
|
|
></gf-positions-table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-13 21:53:58 +02:00
|
|
|
</div>
|