mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
3 years ago
committed by
GitHub
12 changed files with 113 additions and 22 deletions
@ -1,7 +1,9 @@ |
|||||
|
import { HistoricalDataItem } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-position-detail.interface'; |
||||
import { DataSource } from '@prisma/client'; |
import { DataSource } from '@prisma/client'; |
||||
|
|
||||
export interface SymbolItem { |
export interface SymbolItem { |
||||
currency: string; |
currency: string; |
||||
dataSource: DataSource; |
dataSource: DataSource; |
||||
|
historicalData: HistoricalDataItem[]; |
||||
marketPrice: number; |
marketPrice: number; |
||||
} |
} |
||||
|
@ -1,13 +1,13 @@ |
|||||
<div class="align-items-center d-flex flex-row"> |
<div class="align-items-center d-flex flex-row"> |
||||
<div class="h3 mb-0 mr-2">{{ fearAndGreedIndexEmoji }}</div> |
<div class="h2 mb-0 mr-2">{{ fearAndGreedIndexEmoji }}</div> |
||||
<div> |
<div> |
||||
<div class="h3 mb-0"> |
<div class="h4 mb-0"> |
||||
<span class="mr-2">{{ fearAndGreedIndexText }}</span> |
<span class="mr-2">{{ fearAndGreedIndexText }}</span> |
||||
<small class="text-muted" |
<small class="text-muted" |
||||
><strong>{{ fearAndGreedIndex }}</strong |
><strong>{{ fearAndGreedIndex }}</strong |
||||
>/100</small |
>/100</small |
||||
> |
> |
||||
</div> |
</div> |
||||
<small class="d-block" i18n>Market Mood</small> |
<small class="d-block" i18n>Current Market Mood</small> |
||||
</div> |
</div> |
||||
</div> |
</div> |
||||
|
Loading…
Reference in new issue