Check if date is last day of the quarter.
True if date is last day of the quarter.
See also
Timestamp.is_quarter_startSimilar property indicating the quarter start.
Timestamp.quarterReturn the quarter of the date.
Examples
>>> ts = pd.Timestamp(2020, 3, 14)
>>> ts.is_quarter_end
False
>>> ts = pd.Timestamp(2020, 3, 31)
>>> ts.is_quarter_end
True
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.Timestamp.is_quarter_end.html