{% extends 'dashboard_base.html' %} {% load static %} {% block title %}Copy Experts - Trademont{% endblock %} {% block dashboard_type %}Investor{% endblock %} {% block page_title %}Copy Experts{% endblock %} {% block content %}
Total Capital
${{ stats.total_capital|default:'0.00' }}
Experts copied
{{ stats.experts_copied|default:'0' }}
View experts copied
{% for e in experts %}
{{ e.name|first|upper }}

{{ e.name }}

{% if e.verified %}{% endif %}
WIN RATE {{ e.win_rate }}%
PROFIT SHARE {{ e.profit_share }}%
LOSSES {{ e.losses }}
WINS {{ e.wins }}
STARTING CAPITAL ${{ e.starting_capital }}
{% csrf_token %} {% if e.is_subscribed %} {% elif not e.can_afford %} {% else %} {% endif %}
{% endfor %}
{% endblock %}