If I also backtest using hourly or EOD data, do you think I should create separate tables for them, instead of using WHERE Extract(Minute_Second From Timestamp) = 6000, which should be slow
If I also backtest using hourly or EOD data, do you think I should create separate tables for them, instead of using WHERE Extract(Minute_Second From Timestamp) = 6000, which should be slow
If I also backtest using hourly or EOD data, do you think I should create separate tables for them
instead of using WHERE Extract(Minute_Second From Timestamp) = 6000, which should be slow
This would be a particularly brain-dead query to base a materialized view on. Perhaps a basic course on SQL and RDBMS at your local community college is in order.
Here below is a materialized view aggregating data from an FX five-minute bar base table into a one-hour bar materialized view. The code is Oracle SQL but a MySQL version should be similar:How else should I determine and extract hourly data from 1-min data into a view?
I am looking to upload a lot of financial data from bloomberg into mysql to start constructing a proprietary financial db.
I have a Microsoft Access database with 4+ million quotes. It's very easy to use and its inexpensive, especially compared to SQL Server.