STRASMORE/EXPLORE 2,549 QUERIES

aapl_dividend_adjust

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-09-24, from bonus-shares-vs-stock-splits.

as of series 38×4read in context →
aapl_dividend_adjust — 38 rows by 4 columns, computed from US exchange, SIP and OPRA data.
ex_dateex_labelcash_per_sharesplit_adjusted_per_share
2012-08-09Aug 20122.650.0946
2012-11-07Nov 20122.650.0946
2013-02-07Feb 20132.650.0946
2013-05-09May 20133.050.1089
2013-08-08Aug 20133.050.1089
2013-11-06Nov 20133.050.1089
2014-02-06Feb 20143.050.1089
2014-05-08May 20143.290.1175
2014-08-07Aug 20140.470.1175
2014-11-06Nov 20140.470.1175
2015-02-05Feb 20150.470.1175
2015-05-07May 20150.520.13
2015-08-06Aug 20150.520.13
2015-11-05Nov 20150.520.13
2016-02-04Feb 20160.520.13
2016-05-05May 20160.570.1425
2016-08-04Aug 20160.570.1425
2016-11-03Nov 20160.570.1425
2017-02-09Feb 20170.570.1425
2017-05-11May 20170.630.1575
2017-08-10Aug 20170.630.1575
2017-11-10Nov 20170.630.1575
2018-02-09Feb 20180.630.1575
2018-05-11May 20180.730.1825
2018-08-10Aug 20180.730.1825
2018-11-08Nov 20180.730.1825
2019-02-08Feb 20190.730.1825
2019-05-10May 20190.770.1925
2019-08-09Aug 20190.770.1925
2019-11-07Nov 20190.770.1925
2020-02-07Feb 20200.770.1925
2020-05-08May 20200.820.205
2020-08-07Aug 20200.820.205
2020-11-06Nov 20200.2050.205
2021-02-05Feb 20210.2050.205
2021-05-07May 20210.220.22
2021-08-06Aug 20210.220.22
2021-11-05Nov 20210.220.22
Rows × columns
38 × 4
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for aapl_dividend_adjust, derived from the stored result.
ColumnTypeRangeNotes
ex_date date 2012-08-09 to 2021-11-05
ex_label text 38 distinct values (Aug 2012, Aug 2013, Aug 2014…)
cash_per_share number 0.205 to 3.29
split_adjusted_per_share number 0.0946 to 0.22

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    toString(ex_dividend_date)                            AS ex_date,
    formatDateTime(ex_dividend_date, '%b %Y')             AS ex_label,
    round(toFloat64(any(cash_amount)), 4)                 AS cash_per_share,
    round(toFloat64(any(split_adjusted_cash_amount)), 4)  AS split_adjusted_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
  AND ex_dividend_date >= '2012-01-01'
  AND ex_dividend_date <= '2021-12-31'
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.