Is it possible to receive both tick updates and minute? I tried to do this by adding these two AddFuture calls into the Initialize method but i'm only receiving the minute bar updates. If i remove the Resolution.Minute line i do receive tick updates. But i can't seem to get both together.

     AddFuture(root, Resolution.Minute).SetFilter(TimeSpan.Zero, TimeSpan.FromDays(182))

    AddFuture(root, Resolution.Tick).SetFilter(TimeSpan.Zero, TimeSpan.FromDays(182))