{% extends "dashboard_base.html" %} {% block title %}Deep Dive: {{ symbol }}{% endblock %} {% block content %}

Deep Dive Analysis: {{ symbol }}

Showing posts that mention {{ symbol }}, sorted by most recent.

{% for post in posts %}

{{ post.title }}

r/{{ post.subreddit_name }} {{ post.comment_count }} comments analyzed Avg. Sentiment: {% if post.avg_comment_sentiment > 0.1 %} {{ "%.2f"|format(post.avg_comment_sentiment) }} (Bullish) {% elif post.avg_comment_sentiment < -0.1 %} {{ "%.2f"|format(post.avg_comment_sentiment) }} (Bearish) {% else %} {{ "%.2f"|format(post.avg_comment_sentiment) }} (Neutral) {% endif %}
{% else %}
No analyzed posts found for this ticker.
{% endfor %}
{% endblock %}