{% extends "base.html" %} {% block title %}Overall Dashboard{% endblock %} {% block content %}
Ticker | Mentions | Market Cap | Sentiment |
---|---|---|---|
{{ ticker.symbol }} | {{ ticker.mention_count }} | {{ ticker.market_cap | format_mc }} | {% if ticker.bullish_mentions > ticker.bearish_mentions %} Bullish {% elif ticker.bearish_mentions > ticker.bullish_mentions %} Bearish {% else %} Neutral {% endif %} |