Variables
interval.isminutes
True when the interval is measured in minutes. It is narrower than `interval.isintraday`: both can hold at once, so test the one that matches the question you are asking.
Example
indicator("Minutes Interval Check", overlay=true)
minCheck = interval.isminutes and close > open
plot(minCheck ? high : na, color=color.red, title="Bullish Candle on Minute Chart")
Type
simple bool