I am trying to implement .ml.filltab[] located here on a table of timeseries data composed of regularly interspaced temporal aggregations i.e.:
second | amount price
-----------|----------------
02:46:01 | 54 9953.5
02:46:04 | 150
02:46:05 | 9954.5
Applying the .ml.filltab[] function does not update the index so the table incorrectly fills values without the appropriate index. i.e.
second | amount price
-----------|----------------
02:46:01 | 54 9953.5
02:46:04 | 150 9953.5
02:46:05 | 150 9953.5
As opposed to correctly filling in the index as follows:
second | amount price
-----------|----------------
02:46:01 | 54 9953.5
02:46:02 | 54 9953.5
02:46:03 | 54 9953.5
02:46:04 | 150 9953.5
02:46:05 | 150 9954.5
In addition to the above It also requires a column by which to group the data i.e. a `sym column which is unnecessary when only aggregating a single series.
How does one run a fill forward operation on a table accounting for missing index? Thanks