Streaming v2 Balance of Address

I’m unable to get the balance of an address in streaming mode, it only gives me the changes to the balance, not the total, the same in query mode gives me the total…

 {
                              EVM(dataset: combined, network: eth) {
                                  BalanceUpdates(
                                  where: {BalanceUpdate: {Address: {is: "${pairAddress}"}}}
                                  orderBy: {descendingByField: "balance"}
                                  ) {
                                  Currency {
                                      Name
                                  }
                                  balance: sum(of: BalanceUpdate_Amount)
                                  BalanceUpdate {
                                      Address
                                  }
                                  }
                              }
                          }

@NoFace Subscription keeps track of changes in realtime, so essentially if you subscribe to changes in balance you are subscribing to balance updates

subscription {
  EVM(network: eth) {
    BalanceUpdates(
      where: {BalanceUpdate: {Address: {is: "0xd3d2e2692501a5c9ca623199d38826e513033a17"}}}
      orderBy: {descendingByField: "balance"}
    ) {
      Currency {
        Name
      }
      BalanceUpdate {
        Address
        Amount
      }
    }
  }
}

If you want latest balance, a regular EVM query will do