What Grafana version and what operating system are you using?
Windows
What are you trying to achieve?
Plot cnadlestick time series data
How are you trying to achieve it?
Through clickhouse query
What happened?
Getting “Data missing time field” error
What did you expect to happen?
To see a candlestick chart, i can see table view and has time field
Can you copy/paste the configuration(s) that you are having problems with?
SELECT toUnixTimestamp(TimeBarStart) as time, FirstTradePrice, HighTradePrice, LowTradePrice, LastTradePrice, Volume FROM “algoseekTAQ”.“us_equity_1min_taq” WHERE ( time >= $__fromTime AND time <= $__toTime ) AND ( Ticker = ‘${Ticker}’ ) ORDER BY time ASC LIMIT 1000
Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
Did you follow any online instructions? If so, what is the URL?
No
Hello,
Not quite sure what you mean. Without that function, raw data looks like below. Is the error due to time format issues or time column not being there? I do see ‘time’ column
I’ve a different issue now. I am using candlestick to display this data. Numbers are float, however tool tip shows integers. Any idea how to fix? Thank you