how to get maximum high of previous days 5 min candle?

I was trying to implement the max/ max period function but couldn’t get it right somehow

@Streak can you.

Hi @Nitish_Arora,
With period min, the range will change as and when new candles are formed. So you are setting period min/max function in the morning, say previous 20 candles, the range in period min will remain the same so after the formation of 20 5min candles for the current day, it will check the current day’s ohlc. It will not keep a fixed range which is why this cannot be implemented currently.

You can write to [email protected] with your idea and the team will try to help you with this.

hi I want to check if the opening of a stock just the first candle of 9:15. If it is greater than yesterdays maximum high or close?
no way of finding that out?

Yeah, this does not require Period Min. You can just write

Opening Range(Open, 1min) higher than Prev N(High, -1, Day)

Thanks.
Please tell the difference between
high(1) (I hope it means the first candle)
and opening range high?

Also, is their an option for trailing stoploss?

High(0) = Current candle High
High(1) = Previous candle High
Read about Offset
https://help.streak.tech/scanner/#indicators
Opening Range(High, 1min) = Day’s first candle High. Opening Range is used to accessing the Day’s first candle OHLC values