Variables
interval.ismonthly
Returns true if current resolution is a monthly resolution, false otherwise.
Example
indicator("Monthly Interval Example", overlay=true)
monthlyclose = interval.ismonthly ? close : na
plot(monthlyclose, color=color.purple, title="Monthly High")
Type
simple bool