Forum Discussion
dandan_dain
Oct 30, 2024Copper Contributor
STOCKHISTORY skipping days in a macro
I have an excel file that uses the STOCKHISTORY function for FOREX rates needed on a report. However some tabs are #N/A since some of the days are missing For example, it would start on September...
SergeiBaklan
Oct 31, 2024Diamond Contributor
STOCKHISTORY() skips non trading dates. If with formula it could be
=LET(
start, DATE(2024,8,1),
end, TODAY(),
dates, SEQUENCE( end-start+1,,start),
pair, "GBP/USD",
stock, STOCKHISTORY(pair, start, end,0,0,0,1),
rates, XLOOKUP(dates,CHOOSECOLS(stock,1),CHOOSECOLS(stock,2),,-1),
HSTACK(dates, rates)
)