Combine several intervals in a single query?

Hi,
I would like to retrive OHLCV data for different timeframes.
Should I do one query per timeframe or is there a way to combine different timeframes?

Something like

Time({
            interval: {in: minutes, count: 10}
            interval: {in: hours, count: 10}
}
)

?

1 Like

use aliases. But since there can be multiple minutes in hours, you’ll get duplicate entries for
interval: {in: hours, count: 10}