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

Account Profile

Manage your account information and MT5 connections

Profile Information

{% csrf_token %}
{{ form.first_name }} {% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %}
{{ form.last_name }} {% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
{{ form.country }} {% if form.country.errors %}
{{ form.country.errors }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors }}
{% endif %}

Account Statistics

Total Profit
${{ profile.total_profit|floatformat:2 }}
Total Drawdown
{{ profile.total_drawdown|floatformat:2 }}%
Member Since
{{ profile.date_joined|date:"M Y" }}
Verification Status
{% if profile.is_verified %} Verified {% else %} Pending {% endif %}

MT5 Accounts

Manage your MetaTrader 5 account connections

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 }} | Server: {{ account.server }}

    {% if account.balance %}
    Balance: ${{ account.balance|floatformat:2 }} Equity: ${{ account.equity|floatformat:2 }} Profit: ${{ account.profit|floatformat:2 }}
    {% endif %}
  • {% endfor %}
{% else %}

No MT5 Accounts

Connect your MetaTrader 5 account to start copy trading

Add Your First Account
{% endif %}
{% endblock %}