Do extended market hours support Resolution.Hour? In the following code snippet, I configure the UVXY with Resolution.Hour.

 

self.UVXY = self.AddEquity(
"UVXY",
Resolution.Hour,
Market.USA,
True,
1,
True,
)

 

In the direct logs, the prices during extended market hours seem to be missing.

2018-05-01 15:00:00 UVXY: $14.89
2018-05-01 16:00:00 UVXY: $14.74
# ... missing? ...
2018-05-02 10:00:00 UVXY: $14.56

However, by consolidating 60 minutes with Resolution.Minute, the prices appear during extended market hours.

 

2018-05-01 15:00:00 UVXY: $14.89
2018-05-01 16:00:00 UVXY: $14.74
2018-05-01 17:00:00 UVXY: $14.55
2018-05-01 18:00:00 UVXY: $14.64
2018-05-01 19:00:00 UVXY: $14.60
2018-05-01 20:00:00 UVXY: $14.53
2018-05-02 05:00:00 UVXY: $14.48
2018-05-02 06:00:00 UVXY: $14.40
2018-05-02 07:00:00 UVXY: $14.46
2018-05-02 08:00:00 UVXY: $14.55
2018-05-02 09:00:00 UVXY: $14.63
2018-05-02 10:00:00 UVXY: $14.56

 

Why are the prices during extended market hours missing with Resolution.Hour? Thanks.