<%= t("reports.print.investments.portfolio_value") %>
<%= format_money(@investment_metrics[:portfolio_value]) %>
<% if has_sparkline_data?(@trends_data) %>
<% end %>
<% if @investment_metrics[:unrealized_trend] %>
<%= t("reports.print.investments.total_return") %>
<%= @investment_metrics[:unrealized_trend].value >= 0 ? "+" : "" %><%= format_money(Money.new(@investment_metrics[:unrealized_trend].value, Current.family.currency)) %>
<%= @investment_metrics[:unrealized_trend].percent_formatted %>
<% end %>
<% if @investment_metrics[:period_return_trend] %>
<%= t("reports.print.investments.period_return") %>
<%= @investment_metrics[:period_return_trend].value >= 0 ? "+" : "" %><%= format_money(Money.new(@investment_metrics[:period_return_trend].value, Current.family.currency)) %>
<%= @investment_metrics[:period_return_trend].percent_formatted %>
<% end %>
<%= t("reports.print.investments.contributions") %>
<%= format_money(@investment_metrics[:period_contributions]) %>
<%= t("reports.print.investments.this_period") %>
<%= t("reports.print.investments.withdrawals") %>
<%= format_money(@investment_metrics[:period_withdrawals]) %>
<%= t("reports.print.investments.this_period") %>
<% if @investment_metrics[:top_holdings].any? %>