{% extends "base.html" %} {% block title %}Overall Dashboard{% endblock %} {% block content %}

Top 10 Tickers (All Subreddits)

{% for ticker in tickers %} {% endfor %}
Ticker Mentions Market Cap Closing Price Sentiment
{{ ticker.symbol }} {{ ticker.mention_count }} {{ ticker.market_cap | format_mc }} {% if ticker.closing_price %} ${{ "%.2f"|format(ticker.closing_price) }} {% else %} N/A {% endif %} {% if ticker.bullish_mentions > ticker.bearish_mentions %} Bullish {% elif ticker.bearish_mentions > ticker.bullish_mentions %} Bearish {% else %} Neutral {% endif %}
{% endblock %}