{% extends 'base.html' %} {% block content %}

{% if current_endpoint == 'main.sadat' %} Below you will find tracks that have been flagged as dropping via a variety of leading indicator tools. Those flags have been collected and an algorithm has been used to determine a recommendation as to which songs to market. The SADAT score below is that number. {% elif current_endpoint == 'main.repowner_page' %} Below you will find tracks that have been flagged as trending via a variety of leading indicator tools. Those flags have been collected and run through a machine learning model that attempts to predict the staying power of the trend now that it has been discovered. The TADAS Score seen below is this prediction. {% else %} Below you will find tracks that have been flagged as trending via a variety of leading indicator tools. Those flags have been collected and run through a machine learning model that attempts to predict the staying power of the trend now that it has been discovered. The TADAS Score seen below is this prediction. {% endif %}


{{ filter_status[0] }}



TRENDING TRACKS

{% if current_endpoint == 'main.sadat' %} {% else %} {% endif %} {% for row in new_df %} {% for value in row[0:8] %} {% if loop.index == 7 %} {% if value.startswith('+') %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %} {% for value in row[8:] %} {% if loop.index in [3,4] %} {% if value > 0 %} {% else %} {% endif %} {% else %} {% if value >= 1 and value <= 100 %} {% else %} {% endif %} {% endif %} {% endfor %} {% endfor %}
ID Artist Track CountrySadat Recommendation Avg Daily {{geo_country}} Streams 7 Day {{geo_country}} Drop Days FallingTADAS-30 Avg Daily {{geo_country}} Streams 7 Day {{geo_country}} Lift Days TrendingDaily Gainers Track Risers TikTok WW TikTok {{ geo_country }}

{{ value }}

{{ value }}

{{ value }}

+{{ "{:,}".format(value | int) }}

{{ "{:,}".format(value | int) }}

{{ value | int }}

{{ value | int }}

{% endblock %} {% block scripts %} {% endblock %}