Hi, I'm not sure how to do this using an indicator. I've tried the following which doesn't work on multiple levels. I couldn't find a simple example where an algo gets the High of a couple of bars ago.

var spy_ind = Identity(spy, Resolution.Hour); high_2 = new Delay(2).Of(Identity(spy)); RegisterIndicator(spy, high_2, Resolution.Hour);