I'm trying to implement simple multi charts ui.
I watched MongoDB presentation for financial timeseries with candlesticks. As I understand timeseries works as flat structure, and I should put there ticks.
timeseries: { timeField: "time", metaField: "symbol", granularity: "seconds", },
But BinanceAPI provides with candlesticks data, like open close hight low for different time periods 1H 4H 1D. Or if I fetch ticks, I receive only the last ticks for multi pairs.
What kind of solutions could be there?
Should I fetch those candlesticks and convert it to ticks then put as timeseries. Or is there any other solutions?