I understand that there is a fetch_csv method but i was hoping for something a little bit nicer and something that would not disqualify me from the Quantopian contest.
I have some precomputed look-up-tables that i would like to load and test. they were built on data before 2013, so running them on a back test for 2013 to 2016 should not represent any data leakage. the tables are not really a time-series, and in that regard, i don't think it fits well into the fetch_csv method. and they are pretty big (20 MB each as CSV, and 7 MB each as pickle file), but they only need to be loaded once, and updated maybe once every few years.
I cannot build the data table using the Q platform because building the table requires all historical data and takes a few hours to run.
I would like to load a few user-defined csv files that are about 20 MB each. How would I do that without fetch_csv?
any help would be greatly appreciated. Thank you.