Transaction Volume In Profit Or Loss

Description

These 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 a given 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.

{
getMetric(metric: "transaction_volume_in_profit") {
timeseriesDataJson(
slug: "bitcoin"
from: "2025-03-01T00:00:00Z"
to: "2025-03-30T00:00:00Z"
interval: "1d"
)
}
}

Available under the transaction_volume_in_loss name.

{
getMetric(metric: "transaction_volume_in_loss") {
timeseriesDataJson(
slug: "bitcoin"
from: "2025-03-01T00:00:00Z"
to: "2025-03-30T00:00:00Z"
interval: "1d"
)
}
}

Available under the transaction_volume_profit_loss_ratio name.

{
getMetric(metric: "transaction_volume_profit_loss_ratio") {
timeseriesDataJson(
slug: "bitcoin"
from: "2025-03-01T00:00:00Z"
to: "2025-03-30T00:00:00Z"
interval: "1d"
)
}
}