{% extends "base.html" %} {% block title %}r/{{ subreddit_name }} Dashboard{% endblock %} {% block content %}

Top 10 Tickers Today in r/{{ subreddit_name }} daily image weekly image

{% 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 %}