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

Reddit Ticker Mentions

{{ subtitle }}

{{ date_string }}
{% for ticker in tickers %} {% else %} {% endfor %}
Rank Ticker Mentions Sentiment Mkt Cap Close Price
{{ loop.index }} {% if is_image_mode %} {{ ticker.symbol }} {% else %} {{ ticker.symbol }} {% endif %} {{ ticker.total_mentions }} {% if ticker.bullish_mentions > ticker.bearish_mentions %} Bullish {% elif ticker.bearish_mentions > ticker.bullish_mentions %} Bearish {% else %} Neutral {% endif %} {{ ticker.market_cap | format_mc }} {% if ticker.closing_price %} ${{ "%.2f"|format(ticker.closing_price) }} {% else %} N/A {% endif %}
No ticker data found for this period.
{% endblock %}