Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Can you explain this part of the query?
from generate_series((select date_trunc('day',min(createdAt)) from market_data),
(select date_trunc('day',min(createdAt)) from market_data)+'1 day',
'PT00:05:00') as gs(date)
Why did you use a table called generate_series.
I liked your solution the most, so I would be happy to understand it and learn from it