I have a function, f[symbol;date0;date1]
, as well as a range of dates, say
2017.12.04
2017.12.05
2017.12.06
I'd like to run this function for a given symbol - assume "AAPL" - once for each day. In essence:
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'd like each date to just be appended to the previous results. What might be the best way to do this?