month - Pine Script Variable
Overview
Section titled “Overview”Current bar month in exchange timezone.
intQualifier
Section titled “Qualifier”series
Remarks
Section titled “Remarks”- The value is derived from the bar’s opening time. Overnight sessions can report the prior month on the first bar.
- Note that this variable returns the month based on the time of the bar’s open. For overnight sessions (e.g. EURUSD, where Monday session starts on Sunday, 17:00) this value can be lower by 1 than the month of the trading day.
Example
Section titled “Example”//@version=6indicator("Monthly separators", overlay=true)
isNewMonth = ta.change(month)bgcolor(isNewMonth ? color.new(color.purple, 85) : na)