{% extends "dashboard_base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

Reddit Ticker Mentions

{{ subtitle }}

{{ date_string }}
{% if not is_image_mode %} {% endif %}
{% set ticker_colors = { 1: 'text-violet-400', 2: 'text-lime-400', 3: 'text-cyan-400', 4: 'text-yellow-400', 5: 'text-red-400', 6: 'text-orange-400', 7: 'text-emerald-400', 8: 'text-blue-400', 9: 'text-gray-300', 10: 'text-pink-400' } %}
{% for ticker in tickers %}
{{ loop.index }}
{% if is_image_mode %} {{ ticker.symbol }} {% else %} {{ ticker.symbol }} {% endif %}
Mentions
{{ ticker.total_mentions }}
Sentiment
{% if ticker.bullish_mentions > ticker.bearish_mentions %}Bullish {% elif ticker.bearish_mentions > ticker.bullish_mentions %}Bearish {% else %}Neutral{% endif %}
Mkt Cap
{{ ticker.market_cap | format_mc }}
Last Price
{% if ticker.closing_price %}${{ "%.2f"|format(ticker.closing_price) }} {% else %}N/A{% endif %}
{% else %}
No ticker data found for this period.
{% endfor %}
{% endblock %}