Update dashboard summary calculations: Adjust unrealized gain/loss metrics to include current fiat balance alongside Bitcoin holdings, enhancing accuracy in financial insights for users.
This commit is contained in:
parent
9821be0406
commit
591036aa54
1 changed files with 3 additions and 3 deletions
|
|
@ -72,11 +72,11 @@
|
||||||
<q-card flat class="bg-blue-1">
|
<q-card flat class="bg-blue-1">
|
||||||
<q-card-section class="text-center">
|
<q-card-section class="text-center">
|
||||||
<div class="text-h6 text-blue-8">
|
<div class="text-h6 text-blue-8">
|
||||||
${dashboardData.current_sats_fiat_value > (dashboardData.total_fiat_invested / 100) ? '+' : ''}
|
${(dashboardData.current_sats_fiat_value + dashboardData.current_fiat_balance) > dashboardData.total_fiat_invested ? '+' : ''}
|
||||||
${formatCurrencyWithCode(dashboardData.current_sats_fiat_value - (dashboardData.total_fiat_invested / 100), dashboardData.currency)}
|
${formatCurrencyWithCode((dashboardData.current_sats_fiat_value + dashboardData.current_fiat_balance) - dashboardData.total_fiat_invested, dashboardData.currency)}
|
||||||
</div>
|
</div>
|
||||||
<div class="text-caption text-blue-7">
|
<div class="text-caption text-blue-7">
|
||||||
${dashboardData.current_sats_fiat_value > (dashboardData.total_fiat_invested / 100) ? 'Unrealized Gain' : 'Unrealized Loss'}
|
${(dashboardData.current_sats_fiat_value + dashboardData.current_fiat_balance) > dashboardData.total_fiat_invested ? 'Unrealized Gain' : 'Unrealized Loss'}
|
||||||
</div>
|
</div>
|
||||||
<div class="text-caption text-grey">vs total invested</div>
|
<div class="text-caption text-grey">vs total invested</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue