{% extends "layout.html" %} {% block title %}Live Signals - Trade Signals{% endblock %} {% block content %}
Live Trading Signals

Trading Signals Dashboard

Track real-time trading signals with performance insights and comprehensive analytics

{{ total_signals }}
Total Signals
{{ active_count }}
Active
{{ pending_count }}
Pending
{{ win_rate }}%
Win Rate
₹{{ "%.0f"|format(total_profit) }}
Total Profit
₹{{ "%.0f"|format(total_loss) }}
Total Loss

Live Trading Signals

{% if not current_user.is_authenticated %} Unlock All Signals {% endif %}
{% if signals %}
{% for signal in signals %} {% endfor %}
Symbol Type Entry Entry Time Exit Exit Time Duration P&L Status Product
{{ signal.symbol }} {% if signal.signal_type|lower == 'buy' %} BUY {% else %} SELL {% endif %} {{ "%.2f"|format(signal.entry_price) }} {{ signal.entry_time.strftime('%d %b, %H:%M') if signal.entry_time else 'N/A' }} {{ "%.2f"|format(signal.exit_price) if signal.exit_price else '—' }} {{ signal.exit_time.strftime('%d %b, %H:%M') if signal.exit_time else '—' }} {{ signal.calculate_duration() }} {% if signal.profit_loss %} {% if signal.profit_loss > 0 %}+{% endif %}₹{{ "%.0f"|format(signal.profit_loss) }} {% else %} {% endif %} {% if signal.status == 'PROFIT' %} PROFIT {% elif signal.status == 'LOSS' %} LOSS {% elif signal.status == 'ACTIVE' %} ACTIVE {% else %} {{ signal.status }} {% endif %} {% if signal.product %} {{ signal.product.name }} {% else %} N/A {% endif %}
{% else %}

No signals available at the moment.

{% if not current_user.is_authenticated %} Get Started {% endif %}
{% endif %} {% if not current_user.is_authenticated %}

Unlock Premium Signals

Get real-time updates, advanced analytics, and priority support

Start Free Trial
{% endif %}
{% endblock %}