How can I calculate Biggest buyers, Biggest sellers like poocoin


I Want have data big buyer and big seller like poocoin, help me =((

Please refer to this query

Thank you, do you have an example for DexTrades though?

how do i query if i change 1 token, please help me :face_with_peeking_eye:

DEXTrades is not available for Binance blockchain. It is available with Binance Smart Chain Mainnet though.

You can add a sender or receiver filter in your GraphQL query

{
  binance {
    trades(
      options: {desc: "block.height", limit: 10}
      date: {since: "2022-01-30", till: null}
      seller: {is: "bnb1pc30frhslf37nr7lezeds6730wl3ymps4g8ach"}
    ) {
      block {
        timestamp {
          time(format: "%Y-%m-%d %H:%M:%S")
        }
        height
      }
      sellOrderId
      seller {
        address
      }
      buyOrderId
      buyer {
        address
      }
      quoteAmount
      quoteCurrency {
        symbol
        name
      }
      baseAmount
      baseCurrency {
        symbol
        name
      }
      transaction {
        hash
      }
    }
  }
}

I meant DexTrades for the Binance Smart Chain Mainnet. How would we query the biggest buyers and sellers? Thank you.

If i want have bigbuyer, bigseller of ETH? please help me

You can run this GraphQL query to get that information

You can get that information from this GraphQL query

Sorry, but this data does not resemble the example in the original post at all.

I’m trying to get the highest traders (both for purchases and for sales) for a certain token, not the aggregate volume of sales in general for a token.

If you don’t mind, can you take another look at the screenshots in the original post and let me know if there’s any way to reproduce these results with Bitquery? Thank you.

Can i change token address ?

Yes, if you facing any problem making your GraphQL query please make use of the Bitquery builder. Checkout this tutorial