Two listed crude oil funds, calendar year price change
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-08-10, from Contango and Roll Yield in Commodity ETFs.
| year | uso_pct | usl_pct | gap_pct |
|---|---|---|---|
| 2021 | 67.88 | 65.27 | 2.62 |
| 2022 | 27.87 | 25.84 | 2.02 |
| 2023 | -1.46 | 2.16 | -3.62 |
| 2024 | 14.87 | 9.35 | 5.52 |
| 2025 | -10.1 | -13.51 | 3.41 |
- Rows × columns
- 5 × 4
- 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 | 5 distinct values (2021, 2022, 2023…) | |
uso_pct |
number | -10.1 to 67.88 | percent |
usl_pct |
number | -13.51 to 65.27 | percent |
gap_pct |
number | -3.62 to 5.52 | 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.
the exact SQL behind every number
SELECT
toString(toYear(date)) AS year,
round((argMaxIf(toFloat64(close), date, ticker = 'USO')
/ argMinIf(toFloat64(close), date, ticker = 'USO') - 1) * 100, 2) AS uso_pct,
round((argMaxIf(toFloat64(close), date, ticker = 'USL')
/ argMinIf(toFloat64(close), date, ticker = 'USL') - 1) * 100, 2) AS usl_pct,
round(((argMaxIf(toFloat64(close), date, ticker = 'USO')
/ argMinIf(toFloat64(close), date, ticker = 'USO'))
- (argMaxIf(toFloat64(close), date, ticker = 'USL')
/ argMinIf(toFloat64(close), date, ticker = 'USL'))) * 100, 2) AS gap_pct
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('USO', 'USL')
AND date >= '2021-01-01'
AND date < '2026-01-01'
GROUP BY toYear(date)
HAVING countIf(ticker = 'USO') > 100
AND countIf(ticker = 'USL') > 100
ORDER BY year
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisContango and Roll Yield in Commodity ETFs
The financing leg: 3 month and 1 year Treasury yields by month
series 91×4
→
Both funds rebased to 100 at the start of the window, month by month
series 60×4
→
A 15% cap and 9% buffer, seen from three entry points
ranking 21×4
→
When Q1 2026 13F reports landed, by week after quarter end
ranking 13×2
→
Most-filed EDGAR form types over the trailing year
ranking 12×3
→
Latest dividend yield: index heavyweights beside dividend-screen staples
ranking 12×4
→
See all 2,170 queries →