quarterEnd
Syntax
quarterEnd(X, [endingMonth=12], [offset], [n=1])
Arguments
X is a scalar/vector of data type DATE, DATEHOUR, DATETIME, TIMESTAMP or NANOTIMESTAMP.
endingMonth is an integer between 1 and 12 indicating a month. The default value is 1.
offset is a scalar of the same data type as X. It must be no greater than the minimum value of X. The default value is the minimum value of X.
n is a positive integer. The default value is 1.
Details
Return the first day of the quarter that X belongs to. The first months of the quarters are determined by startingMonth. Note that startingMonth=1 is equivalent to startingMonth=4, 7 or 10.
If parameter offset is specified, the result is updated every n quarters. Parameter offset works only if parameter n>1.
Examples
quarterEnd(2012.06.12);
// output
2012.06.30
quarterEnd(2012.06.13 10:10:10.008,5);
// output
2012.08.31
date=2016.01.12 2016.02.25 2016.05.12 2016.06.28 2016.07.10 2016.08.18 2016.09.02 2016.10.16 2016.11.26 2016.12.30
time = [09:34:07,09:36:42,09:36:51,09:36:59,09:32:47,09:35:26,09:34:16,09:34:26,09:38:12,09:38:13]
sym = take(`MSFT,10)
price= 49.6 29.46 29.52 30.02 174.97 175.23 50.76 50.32 51.29 52.38
qty = 2200 1900 2100 3200 6800 5400 1300 2500 8800 4500
t1 = table(date, time, sym, qty, price);
select avg(price),sum(qty) from t1 group by quarterEnd(date,12,2016.01.01,2)
quarterEnd_date | avg_price | sum_qty |
---|---|---|
2016.03.31 | 39.53 | 4100 |
2016.09.30 | 92.1 | 18800 |
2017.03.31 | 51.33 | 15800 |
Related functions: quarterBegin, businessQuarterBegin, businessQuarterEnd