STRASMORE/EXPLORE 2,549 QUERIES

shel_worked

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 uk-dividend-stocks-for-thai-investors.

as of series 4×6read in context →
shel_worked — 4 rows by 6 columns, computed from US exchange, SIP and OPRA data.
dateex_labelgross_usduk_withholding_usdadr_fee_usdnet_usd
2025-11-1414 Nov 202571.60170.6
2026-02-2020 Feb 202674.40173.4
2026-05-2222 May 202678.120177.12
2026-08-1414 Aug 202678.120177.12
Rows × columns
4 × 6
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 shel_worked, derived from the stored result.
ColumnTypeRangeNotes
date date 2025-11-14 to 2026-08-14
ex_label text 4 distinct values (14 Aug 2026, 14 Nov 2025, 20 Feb 2026…)
gross_usd number 71.6 to 78.12 US dollars
uk_withholding_usd number every row is 0 US dollars
adr_fee_usd number every row is 1 US dollars
net_usd number 70.6 to 77.12 US dollars

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
    date,
    ex_label,
    gross_usd,
    uk_withholding_usd,
    adr_fee_usd,
    net_usd
FROM
(
    SELECT
        toString(ex_dividend_date)                   AS date,
        formatDateTime(ex_dividend_date, '%d %b %Y') AS ex_label,
        round(toFloat64(cash) * 100, 2)              AS gross_usd,
        round(toFloat64(cash) * 100 * 0.0, 2)        AS uk_withholding_usd,
        round(100 * 0.01, 2)                         AS adr_fee_usd,
        round(toFloat64(cash) * 100 - 100 * 0.01, 2) AS net_usd
    FROM
    (
        SELECT
            ex_dividend_date,
            any(cash_amount) AS cash
        FROM global_markets.stocks_dividends
        WHERE ticker = 'SHEL'
          AND currency = 'USD'
          AND ex_dividend_date <= today()
        GROUP BY ex_dividend_date
        ORDER BY ex_dividend_date DESC
        LIMIT 4
    )
)
ORDER BY date
⌘/Ctrl + Enter

Work with this data in your AI assistant

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