{% extends 'base.html' %} {% load static %} {% block title %}Dashboard - AIBOTXCHANGE{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Welcome back, {{ user.first_name|default:user.username }}!

Here's your trading portfolio overview

Total Profit
${{ total_profit|floatformat:2 }}
MT5 Accounts
{{ stats.total_accounts }}
Active Strategies
{{ stats.active_subscriptions }}
Average ROI
{{ avg_roi|floatformat:1 }}%

Active Subscriptions

Browse More Strategies
{% if active_subscriptions %}
{% for subscription in active_subscriptions %}

{{ subscription.strategy.name }}

{{ subscription.get_status_display }}
Asset:
{{ subscription.strategy.primary_asset }}
Profit:
${{ subscription.total_profit|floatformat:2 }}
ROI:
{{ subscription.roi_percent|floatformat:1 }}%
Account:
{{ subscription.mt5_account.account_name }}
{% endfor %}
{% else %}

No Active Subscriptions

Start copy trading by subscribing to a profitable strategy

Browse Strategies
{% endif %}

MT5 Accounts

Add Account
{% if mt5_accounts %}
{% for account in mt5_accounts %}

{{ account.account_name }}

{{ account.get_status_display }}
Login:
{{ account.login_id }}
Broker:
{{ account.get_broker_display }}
Balance:
${{ account.balance|floatformat:2 }}
Equity:
${{ account.equity|floatformat:2 }}
{% endfor %}
{% else %}

No MT5 Accounts

Connect your MetaTrader 5 account to start trading

Add MT5 Account
{% endif %}

Recent Messages

View All
{% if recent_messages %}
{% for message in recent_messages %}

{{ message.subject }}

{{ message.created_at|timesince }} ago

{{ message.message|truncatechars:100 }}

{% endfor %}
{% else %}

No messages

{% endif %}

Recent Payments

View All
{% if recent_payments %}
{% for payment in recent_payments %}
{{ payment.strategy.name }}
{{ payment.created_at|date:"M d, Y" }}
${{ payment.amount|floatformat:2 }}
{{ payment.get_status_display }}
{% endfor %}
{% else %}

No payments yet

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}