Maybe I am totally wrong, but I basically wanted to create a moving average that shows the average of the past 24hs at any time. SELECT KAUFMANS_ADAPTIVE_MOVING_AVERAGE(MEAN("value"), 2) FROM "°C" WHERE ("entity_id" = 'temperature_158d000119f402') GROUP BY time(1d)
Is it even possible to create a time interval based moving average, at all?