{% extends "layout.html" %}
{% block title %}Live Signals - Trade Signals{% endblock %}
{% block content %}
Track real-time trading signals with performance insights and comprehensive analyticsTrading Signals Dashboard
| 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 %} |
No signals available at the moment.
{% if not current_user.is_authenticated %} Get Started {% endif %}