I am running a strategy at minute bar granularity
I am using Kinetic market data.
I am using NYMEX instruments, Session Manager Template has all sessions set to a 6pm open and a 5.15pm close.
I add the Daily time series as I need to know the previous daily sessions closing price:-
Add(PeriodType.Day, 1);
which I request on the first open minute(Open[0]):-
with Closes[1][0]
It invariably gives me an incorrect price regardless of what time I specify the end of the session to end.
The following give correct prices:-
Opens[1][0], High[1][0], Lows[1][0] give correct results
Has anyone else experienced similar when extracting the closing price from a Higher time frame BarsArray when using Kinetick data with closing times set via the Session Manager?

Comment