{% extends "warden/warden_layout.html" %} {% block content %}
Table
{%for key, value in data.iterrows()%} {%if value['BTC_quant'] != 0%} {%endif%} {%endfor%}
Date Portfolio Value
({{current_user['symbol']}})
Cost
({{current_user['symbol']}})
PnL
({{current_user['symbol']}})

(Position)

(Flow)

(price in {{current_user['symbol']}})
NAV
{{key.strftime("%Y-%b-%d")}} {{current_user['symbol']}} {{value['PORT_fx_pos'] | jformat(0)}} {{current_user['symbol']}} {{value['PORT_ac_CFs_fx'] | jformat(0)}} {{current_user['symbol']}} {{(value['PORT_fx_pos'] - value['PORT_ac_CFs_fx']) | jformat(0)}} {{value['BTC_pos'] | jformat(4)}} {%if value['BTC_quant'] > 0 %} {%elif value['BTC_quant'] < 0 %} {%endif%} {{value['BTC_quant'] | jformat(4)}} {{current_user['symbol']}} {{value['BTC_price'] | jformat(0)}} {{value['NAV_fx'] | jformat(2)}}
1 All returns in this page are in {{current_user['name_plural']}}.
{%if current_user['name'] != 'US Dollar'%} This means that the returns include the asset returns plus the currency return in the period.
For example, if Bitcoin in USD is up 5% and the {{current_user['name']}} is up 1%, the return will be 6.05% in {{current_user['name_plural']}}. {%endif%}


{% endblock content %}