I have not found block for this, and what I think, for this you should create complex custom function with at least these options:
identify current chart preiod (if it is H1, D1, ...)
identify current time and based on your specified time and chart period calculate how much ID candles is between your time and current time and save it into variable "shift"
in custom code block use function:
ChartNavigate(0, CHART_END, shift);
where "shift" is value calculated in previous step ...
... and be prepare, that it may not work 😄