AudioAlphaCrypto Podcast Sentiment Analysis
Market InsightsPodcastsAsset TrackerWeekly Deep DivePricingAboutFAQMetrics GuideAPI Docs

© 2026 AudioAlpha. All rights reserved.

All insights are AI-generated and may contain errors. This is not financial advice.

    AudioAlphaAudioAlpha
    Find PodcastsAsset TrackerDashboardOur EdgePricing

    Metrics Documentation

    Understanding AudioAlpha's sentiment analysis

    AudioAlpha analyzes crypto podcast discourse to generate actionable sentiment metrics. This guide explains each metric, its scale, and how it's visualized in our charts.

    Jump to

    Asset-Level MetricsCircle Diagram MetricsSpider Chart MetricsDaily Market MetricsColor Coding

    Circle Diagram Metrics

    The concentric ring chart displays 6 key metrics. Each ring fills from 0-100% based on the metric's normalized value. The center shows the primary α-sentiment score.

    α-sentiment

    The primary market sentiment score derived from podcast discourse analysis. Measures overall bullish or bearish sentiment expressed by crypto podcast hosts and guests.

    0-10 (0=bearish, 10=bullish)0-10 → 0-100% ring fill
    Formula
    α_sentiment = AVG(episode_sentiment_scores) where episodes are from that calendar day (UTC)

    Sentiment Z-Score

    How the current sentiment compares to historical norms. A z-score of +2 means sentiment is 2 standard deviations above average - unusually bullish. Negative values indicate below-average sentiment.

    -3 to +3 (standard deviations)-3 to +3 → 0-100% ring fill
    Formula
    z = (α_sentiment_today - μ) / σ where μ = AVG(α_sentiment) over past 90 days and σ = STDDEV_SAMP(α_sentiment) over past 90 days (excludes current day)

    1-Day Delta (Δ1d)

    Change in sentiment over the past calendar day (UTC). Positive values indicate improving sentiment, negative values indicate declining sentiment.

    -5 to +5 points-5 to +5 → 0-100% ring fill
    Formula
    Δ1d = α_sentiment_today - α_sentiment_yesterday

    7-Day Delta (Δ7d)

    Change in sentiment over the past 7 calendar days. Shows the weekly trend direction and magnitude.

    -5 to +5 points-5 to +5 → 0-100% ring fill
    Formula
    Δ7d = α_sentiment_today - α_sentiment_7_days_ago

    Consensus Score

    Measures agreement among podcast hosts. High consensus (80%+) means most voices agree on direction. Low consensus indicates mixed or conflicting opinions.

    0-100%0-1 → 0-100% ring fill
    Formula
    consensus = exp(-σ / 0.8) where σ = STDDEV_SAMP(episode_sentiments) Lower std deviation = higher agreement = higher score Default: 0.5 when n ≤ 1

    Episode Volume Score

    Sigmoid-normalized z-score of episode count by day of week. Shows whether there's unusually high or low podcast activity compared to typical patterns for that weekday.

    0-1 (sigmoid of z-score)0-1 → 0-100% ring fill
    Formula
    score = 1 / (1 + exp(-z)) where z = (episode_count - μ_weekday) / σ_weekday μ and σ calculated from same weekday over past 180 days

    Spider Chart Metrics

    The spider (radar) chart shows 5 dimensions for each asset. All metrics are normalized to 0-1 scale. The filled area represents the asset's overall profile - larger area generally indicates stronger signals.

    α-sentiment (Spider)

    Asset-specific sentiment score on the spider chart. Normalized to 0-1 scale for visualization alongside other metrics.

    0-1 (normalized from 0-10)Value plotted on radial axis
    Formula
    normalized = raw_sentiment / 10

    Consensus

    How much podcast hosts agree on their assessment of this specific asset. High consensus strengthens the signal reliability.

    0-1 (0=no consensus, 1=full consensus)
    Formula
    consensus = EXP(-σ / 0.8) where σ = STDDEV_SAMP(sentiment_scores) Default: 0.5 when episode_count ≤ 1

    Z-score

    Normalized sentiment deviation from the mean. Shows how far the current sentiment is from typical levels, scaled to 0-1.

    0-1 (0.5=average, <0.5=below average, >0.5=above average)
    Formula
    z_score_norm = 0.5 + 0.5 × TANH(sentiment_zscore / 2) where sentiment_zscore = (sentiment - mean) / stddev

    Attention Share

    What proportion of overall podcast discourse is focused on this asset. Higher attention share means the asset is dominating conversations.

    0-1 (fraction of total discourse)
    Formula
    attention_share = asset_mentions / total_mentions

    Narrative Intensity

    The strength and conviction of narratives being expressed about the asset. High intensity suggests strong opinions and active debate.

    0-1 (0=weak, 1=intense)
    Formula
    narrative_intensity = attention_share × (1 + ABS(bull_ratio - bear_ratio)) × √episode_count Normalized: narrative_intensity_norm = MIN(1.0, intensity / p95_intensity)

    Daily Market Metrics

    These metrics are available in the daily snapshot data (daily_snapshot table) and can be exported via the dashboard. They provide market-wide statistical context and are calculated across all episodes for each day. See also Circle Diagram Metrics above for visualization-specific metrics.

    α-Sentiment Median

    The median sentiment score across all episodes for the day. Less affected by outliers than the mean.

    0-10
    Formula
    PERCENTILE_CONT(0.5) WITHIN GROUP (ORDER BY episode_sentiment)

    α-Sentiment Std Dev

    Standard deviation of episode sentiments. Higher values indicate more disagreement/variance in opinions.

    0+ (typically 0-3)
    Formula
    σ = STDDEV_SAMP(episode_sentiments)

    α-Sentiment Variance

    Variance of episode sentiments. The squared standard deviation, measuring spread of sentiment values.

    0+ (typically 0-9)
    Formula
    VAR_SAMP(episode_sentiments)

    α-Sentiment OHLC

    Open, High, Low, Close sentiment values for the day - similar to price candlesticks. Open = first episode, Close = last episode.

    0-10 each
    Formula
    Open = first episode sentiment (by publish time) High = MAX(sentiment) Low = MIN(sentiment) Close = last episode sentiment (by publish time)

    Sentiment Skewness

    Measures asymmetry in the distribution. Positive skew = tail toward bullish outliers. Negative skew = tail toward bearish outliers.

    typically -2 to +2
    Formula
    skew = (n / ((n-1)(n-2))) × Σ((x - μ)³) / σ³ (Fisher-Pearson standardized moment coefficient)

    Sentiment Kurtosis

    Measures 'tailedness' of distribution. High kurtosis = more outliers/extreme opinions. Low kurtosis = opinions clustered around mean.

    typically -1 to +5
    Formula
    kurt = ((n(n+1)) / ((n-1)(n-2)(n-3))) × Σ((x - μ)⁴) / σ⁴ - (3(n-1)² / ((n-2)(n-3))) (excess kurtosis, normal distribution = 0)

    Episode Count

    Total number of podcast episodes analyzed for that day.

    0+ (typically 5-50)
    Formula
    COUNT(*) WHERE snapshot_date = target_date

    Sentiment Strength Index

    Measures the conviction/strength of the overall market sentiment signal. Combines sentiment deviation from neutral with sample size confidence.

    0-1
    Formula
    SSI = (((mean_sentiment - 5) / 5) × MIN(1.0, √n / 3.0)) / 2.0 + 0.5 where n = episode count for the day

    Sentiment Strength Index Raw

    Measures the conviction/strength of the overall market sentiment signal. With stronger sensitivity to rarely mentioned assets and centered around 0 for modeling/alpha research.

    -1 to +1
    Formula
    SSI_raw = ((mean_sentiment - 5.5) / 4.5) × MIN(1.0, √n / 10.0) where n = episode count for the day

    Market Regime

    Concise market regime label.

    Categorical (e.g., Examples: "Bullish Accumulation", "Bearish Distribution", "Neutral Consolidation", "Caution / De-risking".)
    Formula
    Classified based on sentiment levels, trends, and volatility patterns

    Asset-Level Metrics

    These metrics are available in the daily asset snapshot data (daily_asset_snapshot table) and can be exported for your favorite assets. Each metric is calculated per-asset per-day, allowing you to track individual asset sentiment over time. See also Spider Chart Metrics above for visualization-specific metrics.

    Composite Scores

    α-Index measures narrative strength (how robust and reliable the signal is), while α-Pulse measures narrative momentum (how rapidly sentiment is changing).

    α-Index

    Composite narrative strength score combining sentiment level, historical sentiment deviation (z-score), host consensus, and coverage reach. Requires 2+ episode mentions to produce a meaningful score. Higher values indicate stronger, more reliable narrative signals.

    0-1
    Formula
    α-Index = (S·0.22 + Z·0.28 + C·0.22 + V·0.28) × (1 + η·0.15) Where: S = (sentiment_mean - 1) / 9 Z = 0.5 + 0.5 × tanh(sentiment_zscore / 2) C = consensus_score × min(episode_count / 5, 1) V = ½ × (max(min(attention_share, 1), 0.15) + max(min(intensity_norm, 1), 0.15)) η = novelty_score

    α-Pulse

    Composite narrative momentum score measuring how rapidly an asset's podcast narrative is accelerating. Combines sentiment z-score, 1-day sentiment delta, attention share, and surprise score. Dampened for assets with low episode counts to reduce noise.

    0-1
    Formula
    α-Pulse = ((B × (1 + η·0.15) + 0.70) / 1.40) × d + 0.40 × (1 - d) Where: B = tanh(Zs/2)·0.40 + tanh(δ1d/1.5)·0.30 + surprise·0.15 + attention·0.15 Zs = sentiment_zscore δ1d = sentiment_delta_1d d = min(episode_count / 3, 1) (episode dampener) η = novelty_score

    Episode Count (Asset)

    Number of episodes mentioning this specific asset on the given day.

    0+
    Formula
    COUNT(*) WHERE ticker = asset AND snapshot_date = target_date

    Attention Share

    What proportion of overall podcast discourse is focused on this asset.

    0-1
    Formula
    attention_share = asset_episode_count / total_episodes_today ROUND((episode_count / NULLIF(total_episodes_today, 0)), 4)

    Days Since Last Mention

    Number of days since this asset was last mentioned in a podcast.

    0+
    Formula
    snapshot_date - last_mention_date

    α-Sentiment Mean (Asset)

    Average sentiment score for this specific asset across all mentions.

    0-10
    Formula
    AVG(sentiment_score) WHERE ticker = asset

    α-Sentiment Median (Asset)

    Median sentiment score for this asset. Less affected by outliers.

    0-10
    Formula
    PERCENTILE_CONT(0.5) WHERE ticker = asset

    α-Sentiment Std Dev (Asset)

    Standard deviation of sentiment for this asset.

    0+
    Formula
    STDDEV_SAMP(sentiment_score) WHERE ticker = asset

    α-Sentiment Variance (Asset)

    Variance of sentiment scores for this asset.

    0+
    Formula
    VAR_SAMP(sentiment_score) WHERE ticker = asset

    α-Sentiment OHLC (Asset)

    Open, High, Low, Close sentiment for this asset on the given day.

    0-10 each
    Formula
    Open = first mention sentiment High = MAX Low = MIN Close = last mention sentiment

    1-Day Delta (Asset)

    Change in this asset's sentiment compared to yesterday.

    -10 to +10
    Formula
    sentiment_today - sentiment_yesterday

    7-Day Delta (Asset)

    Change in this asset's sentiment compared to 7 days ago.

    -10 to +10
    Formula
    sentiment_today - sentiment_7d_ago

    Bull Ratio

    Proportion of mentions with bullish sentiment for this asset.

    0-1
    Formula
    COUNT(bullish_mentions) / COUNT(total_mentions)

    Bear Ratio

    Proportion of mentions with bearish sentiment for this asset.

    0-1
    Formula
    COUNT(bearish_mentions) / COUNT(total_mentions)

    Neutral Ratio

    Proportion of mentions with neutral sentiment for this asset.

    0-1
    Formula
    COUNT(neutral_mentions) / COUNT(total_mentions)

    Consensus Score (Asset)

    How much hosts agree on their assessment of this specific asset. Higher values indicate stronger agreement.

    0-1
    Formula
    consensus = EXP(-σ / 0.8) where σ = STDDEV_SAMP(sentiment_scores) for this asset Default: 0.5 when episode_count ≤ 1

    Surprise Score

    How unexpected or surprising the current attention is compared to historical patterns. Combines recency of mentions with attention deviation.

    0-1
    Formula
    surprise = MIN( 0.5 × (1.0 - days_mentioned / 7.0) + 0.5 × ABS(attention_share - avg_attention) / NULLIF(avg_attention, 0), 1.0 ) where avg_attention = historical average attention share

    α-Sentiment Momentum

    Combines sentiment change direction with conviction (consensus) and discussion volume. Positive values indicate bullish momentum, negative values bearish.

    Unbounded (typically -2 to +2)
    Formula
    momentum = sentiment_delta_1d × consensus_score × LN(episode_count + 1) Returns 0 when any component is NULL

    Narrative Intensity

    The strength and conviction of narratives being expressed about the asset. Combines attention share, polarization (bull vs bear divergence), and discussion volume.

    0+
    Formula
    narrative_intensity = attention_share × (1 + ABS(bull_ratio - bear_ratio)) × √episode_count

    Narrative Intensity (Normalized)

    Normalized version of narrative intensity for cross-asset comparison. Uses the 95th percentile of all assets on that day as the reference point.

    0-1
    Formula
    narrative_intensity_norm = MIN(1.0, intensity / p95_intensity) where p95_intensity = PERCENTILE_CONT(0.95) WITHIN GROUP (ORDER BY narrative_intensity) for all assets on the snapshot date

    Color Coding

    Sentiment Color Scale

    Bullish (6-10 or 0.6-1.0): Strong positive sentiment, green coloring
    Neutral (4.5-6 or 0.45-0.6): Mixed or balanced sentiment, yellow coloring
    Bearish (0-4.5 or 0-0.45): Strong negative sentiment, red coloring

    Spider Chart Scoring

    Good (0.6+): Strong metric performance
    Moderate (0.45-0.6): Average metric performance
    Weak (<0.45): Below average metric performance

    Have questions about our metrics? Check our FAQ.