Looking at S&P e-minis.
Do the minute bars close at the 59 second mark of the minute or at the 00 mark of the new minute?
Bloomberg seems to think the 00 mark. Data I have from CME says 59 second mark.
Confirmed this from bloomberg tick data.
Anyone know?
It ends when you / platform vendor decides it does. Because OHLC bars are an arbitrary construct, albeit a commonly used one. From my code that I wrote to make minute bars from tick data to use in Sierra Chart or TradeStation:
Sierra Chart 8:30 minute bar: It started at 08:30:00.000
TradeStation 8:30 minute bar: It ended at 08:30:00.000
* Bar creation: all ticks between say, 08:30:00.000 to 08:30:59.999 is aggregated
* to a minute bar labeled 08:30. This is how SierraChart creates OHLC bars.
* TradeStation, on the other hand, aggregates all ticks between say, 08:30:00.001
* to 08:31:00.000 to a minute bar labeled 08:31. So, SC 08:30 1 minute bar and TS
* 08:31 1 minute bar is not identical. It is almost the same, with a shift of
* 1 millisecond between the aggregation boundary. We will
* treat our 08:30 minute bar as SC 08:30 minute bar (100% correct) and as TS 08:31
* minute bar (100% correct on most cases; 99.998333% correct in the worst case
* scenario).
HTH