Historical Price History

Hello
Is there a way to get using a query daily token price and volume? For example - In 5 min period, 1 hour and so on?

Try this at https://streaming.bitquery.io/


{
  EVM(dataset: archive, network: eth) {
    DEXTrades(
      limitBy: {by: Block_Date, count: 1}
      limit: {count: 10}
      orderBy: {descending: Block_Date}
      where: {Trade: {Buy: {Currency: {SmartContract: {is: "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"}}}, Sell: {Currency: {SmartContract: {is: "0xdac17f958d2ee523a2206206994597c13d831ec7"}}}}}
    ) {
      Trade {
        Buy {
          Price
          Currency {
            SmartContract
            Name
          }
        }
        Sell {
          Currency {
            Name
          }
        }
      }
      Block {
        Date
        Time
      }
    }
  }
}

Similar way, you can get volume