Skip to content

Instantly share code, notes, and snippets.

@ereshzealous
Created March 15, 2022 06:33
Show Gist options
  • Save ereshzealous/deac0523486d3fd1d2457dadb6d88141 to your computer and use it in GitHub Desktop.
Save ereshzealous/deac0523486d3fd1d2457dadb6d88141 to your computer and use it in GitHub Desktop.
data = from(bucket: "daily-aggregate")
|> range(start: -1d) |> filter(fn: (r) => r["_measurement"] == "ticks") |> filter(fn: (r) => r["product"] == "AGUX/USD") |> window(every: 1d) max = data
|> filter(fn: (r) => r["_field"] == "max") |> max()
|> set(key: "type", value: "max" ) min = data
|> filter(fn: (r) => r["_field"] == "min") |> min()
|> set(key: "type", value: "min" ) union(tables: [min, max])
|> group(columns:["type"], mode: "by")
|> yield()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment