mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1019 B
35 lines
1019 B
<div class="container">
|
|
<h1 class="d-none d-sm-block h3 mb-4 text-center" i18n>Markets</h1>
|
|
@if (hasPermissionToAccessFearAndGreedIndex) {
|
|
<div class="mb-4 row">
|
|
<div class="col-xs-12 col-md-10 offset-md-1">
|
|
<gf-fear-and-greed-index
|
|
class="d-flex justify-content-center"
|
|
[fearAndGreedIndex]="fearAndGreedIndex"
|
|
/>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
<div class="mb-3 row">
|
|
<div class="col-xs-12 col-md-10 offset-md-1">
|
|
<gf-benchmark
|
|
[benchmarks]="benchmarks()"
|
|
[deviceType]="deviceType()"
|
|
[locale]="user?.settings?.locale || undefined"
|
|
[showSymbol]="false"
|
|
[user]="user"
|
|
/>
|
|
@if (benchmarks()?.length > 0) {
|
|
<div
|
|
class="gf-text-wrap-balance line-height-1 mt-3 text-center text-muted"
|
|
>
|
|
<small i18n>
|
|
Calculations are based on delayed market data and may not be
|
|
displayed in real-time.</small
|
|
>
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|