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

Strategy Marketplace

Choose from our collection of profitable trading strategies. Each strategy is thoroughly tested and optimized for consistent returns.

{% for strategy in strategies %}

{{ strategy.name }}

{{ strategy.get_risk_level_display }}

{{ strategy.description|truncatechars:120 }}

Total Return:
{{ strategy.total_return|floatformat:1 }}%
Monthly Fee:
${{ strategy.monthly_fee|floatformat:0 }}
Win Rate:
{{ strategy.win_rate|floatformat:1 }}%
Max Drawdown:
{{ strategy.max_drawdown|floatformat:1 }}%
Primary Asset:
{{ strategy.primary_asset }}
Subscribers:
{{ strategy.subscriber_count }}
{% if strategy.myfxbook_widget_url %}

Performance Chart

MyFxBook Chart
(Live in production)
{% endif %}
{% if user.is_authenticated %} {% if strategy.id in user_subscriptions %}
Subscribed
{% else %} Subscribe - ${{ strategy.monthly_fee|floatformat:0 }}/month {% endif %} {% else %} Login to Subscribe {% endif %} View Details
{% empty %}

No strategies found

Try adjusting your filters or check back later for new strategies.

{% endfor %}
{% if is_paginated %}
{% endif %}

How Copy Trading Works

1

Choose Strategy

Select a profitable trading strategy from our marketplace

2

Connect MT5

Link your MetaTrader 5 account via MetaAPI integration

3

Start Trading

Trades are automatically copied to your account in real-time

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