Given the weakness (freefall?) of the US Dollar I decided to make another series of LME data, this one with Trade Weight Index corrected pricing. The Fed Trade Weight Index (TWI) is published weekly whereas the LME trades daily and is closed on certain holidays. So I wanted to create a list of the TWI for each day of LME trading this decade. There may be easier ways (?) but this is the approach I took:
1. Convert all dates to absolute time.
2. The first LME trading day this decade was on 4th January 2000. Remove TWI data prior to that:
time = AbsoluteTime[{2000, 1, 4, 0, 0, 0.}];
TWIData = DeleteCases[TWIData, x_ /; AbsoluteTime[First@x] < time];
3. Collect the LME trading days for each weekly TWI datum. I figured the easiest way to do this was to use BinLists. Each week has 604800 seconds so this will be the bin width.
bins = BinLists[LMEdates, {start, finish, steps}];


