Hello,

I'm my algorithm I mainly look at at series of Daily candles (put in a rolling window). Whenever a set of criteria is met on the daily candles I wish to evaluate my final criterion based on the first fulfilled order (could be first tick or first second bar) the following day. If the final critierion is met I will put in an order.

I could set my resolution to be seconds, and then use a consolidator to obtain my daily bars, but it just seems like a naive approach, given that I will only consume daily bars, and a single second bar.

I thought about scheduling an event at market open, while keeping the "main resolution" to daily, but I'm unsure if the algorithm will even receive the price data on the lower resolution.

My universe of stocks is quite large, 2000+ stocks.

Perhaps I'm overthinking this, and LEAN is built in such a manner that it won't matter in terms of performance to run seconds as resolution vs daily.

(I'm using Python.)