Transaction Volume In Profit Or Loss

    Description

    Those metrics show the aggregate amount of coins/tokens across all transactions on the network that moved in profit or loss for a given asset in an interval. There is also a metric which shows the ratio between transaction volume in profit and transaction volume in loss.


    Access

    Restricted Access.


    Measuring Unit

    Amount of coins/tokens


    Data Type

    Timeseries Data


    Frequency

    daily intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for these assets


    SanAPI

    Available under the transaction_volume_in_profit name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "transaction_volume_in_profit") {
        timeseriesData(
          slug: "santiment"
          from: "2022-03-01T00:00:00Z"
          to: "2022-03-30T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Available under the transaction_volume_in_loss name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "transaction_volume_in_loss") {
        timeseriesData(
          slug: "santiment"
          from: "2022-03-01T00:00:00Z"
          to: "2022-03-30T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Available under the transaction_volume_profit_loss_ratio name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "transaction_volume_profit_loss_ratio") {
        timeseriesData(
          slug: "santiment"
          from: "2022-03-01T00:00:00Z"
          to: "2022-03-30T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer