I have a CCI5 indicator using daily data

var cci = CCI(symbol, 5,MovingAverageType.Simple,Resolution.Daily);

but would like to use minute data to update the cci before the market closes to make a buy decision using the updated value of cci.

How would I do that?

Author