Bullish/Bearish/Neutral Sentiment Metrics

    Definition

    The Sentiment Bullish, Sentiment Bearish, and Sentiment Neutral metrics represent the sum of Sentiment Bullish Bearish Score values.

    • sentiment_bullish_<source> metrics are computed by taking the sum of the bullish sentiment scores.
    • sentiment_neutral_<source> metrics are computed by taking the sum of the neutral sentiment scores.
    • sentiment_bearish_<source> metrics are computed by taking the sum of the bearish sentiment scores.

    Available Sources

    List of available sources


    Access

    Restricted Access


    Measuring Unit

    Sum of sentiment scores


    Data Type

    Timeseries Data


    Frequency

    Five-Minute Intervals


    Latency

    Social Data Latency


    Available Assets

    All metrics have the same set of available assets


    SanAPI

    Fetch timeseries data for sentiment_bullish_total for a single asset:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    {
      getMetric(metric: "sentiment_bullish_total") {
        timeseriesDataJson(
          slug: "ethereum"
          from: "utc_now-90d"
          to: "utc_now-30d"
          interval: "7d"
        )
      }
    }

    Run in explorer


    Fetch timeseries data for sentiment_neutral_total for multiple assets at the same time:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    {
      getMetric(metric: "sentiment_neutral_total") {
        timeseriesDataPerSlugJson(
          selector: { slugs: ["ethereum", "bitcoin"] }
          from: "utc_now-60d"
          to: "utc_now-55d"
          interval: "1d"
        )
      }
    }

    Run in explorer


    Fetch timeseries data for sentiment_bearish_total for multiple assets at the same time:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    {
      getMetric(metric: "sentiment_bearish_total") {
        timeseriesDataPerSlugJson(
          selector: { slugs: ["ethereum", "bitcoin"] }
          from: "utc_now-60d"
          to: "utc_now-55d"
          interval: "1d"
        )
      }
    }

    Run in explorer


    Fetch aggregated daily values for many assets:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    {
      allProjects(page: 1, pageSize: 50) {
        slug
        sentimentBullish: aggregatedTimeseriesData(
          metric: "sentiment_bullish_total"
          from: "utc_now-7d"
          to: "utc_now"
        )
        sentimentNeutral: aggregatedTimeseriesData(
          metric: "sentiment_neutral_total"
          from: "utc_now-7d"
          to: "utc_now"
        )
        sentimentBearish: aggregatedTimeseriesData(
          metric: "sentiment_bearish_total"
          from: "utc_now-7d"
          to: "utc_now"
        )
      }
    }

    Run in explorer


    Full list of metrics

    The full list of Bullish/Neutral/Bearish sentiment metrics is:

    Open bullish Sentiment Metrics List

    • sentiment_bullish_4chan
    • sentiment_bullish_bitcointalk
    • sentiment_bullish_reddit
    • sentiment_bullish_telegram
    • sentiment_bullish_twitter
    • sentiment_bullish_youtube_videos
    • sentiment_bullish_farcaster
    • sentiment_bullish_total

    Open neutral Sentiment Metrics List

    • sentiment_neutral_4chan
    • sentiment_neutral_bitcointalk
    • sentiment_neutral_reddit
    • sentiment_neutral_telegram
    • sentiment_neutral_twitter
    • sentiment_neutral_youtube_videos
    • sentiment_neutral_farcaster
    • sentiment_neutral_total

    Open bearish Sentiment Metrics List

    • sentiment_bearish_4chan
    • sentiment_bearish_bitcointalk
    • sentiment_bearish_reddit
    • sentiment_bearish_telegram
    • sentiment_bearish_twitter
    • sentiment_bearish_youtube_videos
    • sentiment_bearish_farcaster
    • sentiment_bearish_total