Binance Perpetual Contracts Open Interest/Value (BUSD)

    Description

    Traders are always searching for information to get an edge in the market. The most valuable information is one that provides insights into what other traders are doing - Open Interest offers this information if you know how to interpret it. By understanding open interest and its impact on crypto prices, it can help you make better-informed trading decisions.

    More details on Binance web-site.


    Access

    Restricted Access.


    Measuring Unit

    Dollars


    Data Type

    Timeseries Data


    Frequency

    Five-Minute Intervals


    Latency

    Funding Rates Latency


    Available Assets

    Available for these assets


    SanAPI - Open Interest

    Available under the busd_binance_open_interest name.

    Note: The metric is also accessible under the old name busd_bnb_open_interest. Please start using the new name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "busd_binance_open_interest") {
        timeseriesData(
          slug: "bitcoin"
          from: "2020-04-01T00:00:00Z"
          to: "2020-04-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer


    SanAPI - Open Value

    Available under the busd_binance_open_value name.

    Note: The metric is also accessible under the old name busd_bnb_open_value. Please start using the new name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "busd_binance_open_value") {
        timeseriesData(
          slug: "bitcoin"
          from: "2020-04-01T00:00:00Z"
          to: "2020-04-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer