Created
March 15, 2022 06:33
-
-
Save ereshzealous/deac0523486d3fd1d2457dadb6d88141 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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