I have a function f[symbol;date0;date1] , as well as a date range, for example
2017.12.04 2017.12.05 2017.12.06
I would like to run this function for a given symbol - suppose "AAPL" - once for each day. Essentially:
f[AAPL;2017.12.04;2017.12.04] f[AAPL;2017.12.05;2017.12.05] f[AAPL;2017.12.05;2017.12.05]
This function returns a table, so I want each date to simply be added to the previous results. What could be the best way to do this?
source share