The function is a wrapper around the least absolute deviation (LAD) forecast combination implementation of the
ForecastCombinations package.The defining property of comb_LAD is that it does not minimize the squared error loss like comb_OLS and
comb_CLS, but the absolute values of the errors. This makes the method more robust to outliers -- comb_LAD
tends to penalize models, which have high errors for some observations, less harshly than the least squares methods would.
Optimal forecast combinations under general loss functions are discussed by Elliott and Timmermann (2004). The LAD method is
described in more detail, and used in an empirical context, by Nowotarksi et al. (2014).
The results are stored in an object of class 'foreccomb_res', for which separate plot and summary functions are provided.