Get the daily trading volume for a tokens

Get the daily volume for a certain date for all new tokens on Pancake created in the period from the 1st to the 10th, and daily volume each is >50k

for example: get daily volumes for 8 aug for all tokens created from 1 to 7 aug and daily vol bigger than 50k

Considering the scenario where we are querying the daily volumes for 8 August 2021 i.e. between 1 August 2021 and 7 August 2021.

{
  ethereum(network: bsc) {
    dexTrades(
      options: {asc: "date.date"}
      baseCurrency: {is: "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c"}
      quoteCurrency: {is: "0xe9e7cea3dedca5984780bafc599bd69add087d56"}
      date: {since: "2021-08-01", till: "2021-08-07"}
    ) {
      date {
        date(format: "%Y-%m-%d")
      }
      trades_count: count
      baseCurrency {
        symbol
      }
      quoteCurrency{
        symbol
      }
      quoteAmount
      smartcontracts_count: count(uniq: smart_contracts)
    }
  }
}