msft_year_close
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-22, from msft-stock-price-in-twd.
| year | year_close_usd | usd_return_pct |
|---|---|---|
| 2016 | 62.14 | 12 |
| 2017 | 85.54 | 37.66 |
| 2018 | 101.57 | 18.74 |
| 2019 | 157.7 | 55.26 |
| 2020 | 222.42 | 41.04 |
| 2021 | 336.32 | 51.21 |
| 2022 | 239.82 | -28.69 |
| 2023 | 376.04 | 56.8 |
| 2024 | 421.5 | 12.09 |
| 2025 | 483.62 | 14.74 |
| 2026 | 506.39 | 4.71 |
- Rows × columns
- 11 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
year |
text | 11 distinct values (2016, 2017, 2018…) | |
year_close_usd |
number | 62.14 to 506.39 | US dollars |
usd_return_pct |
number | -28.69 to 56.8 | percent |
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.
WITH yearly AS
(
SELECT
toYear(date) AS y,
argMax(toFloat64(close), date) AS px
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'MSFT'
AND date >= '2015-01-01'
GROUP BY y
)
SELECT
toString(cur.y) AS year,
round(cur.px, 2) AS year_close_usd,
round(100 * (cur.px / prev.prev_px - 1), 2) AS usd_return_pct
FROM yearly AS cur
INNER JOIN
(
SELECT
y + 1 AS join_year,
px AS prev_px
FROM yearly
) AS prev ON cur.y = prev.join_year
ORDER BY cur.y