The 2022 exit: the July 20 disclosure 8-K on file, and TSLA's next session
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-07-26, from Tesla's Bitcoin 10-K: Feb 8, 2021 on the Tape.
disclosure 8k on file
1
prior close
742.28
jul21 close
815.21
next session change pct
9.8
jul21 shares m
46.5
- Rows × columns
- 1 × 5
- 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 |
|---|---|---|---|
disclosure_8k_on_file |
number | every row is 1 | |
prior_close |
number | every row is 742.28 | US dollars |
jul21_close |
number | every row is 815.21 | US dollars |
next_session_change_pct |
number | every row is 9.8 | percent |
jul21_shares_m |
number | every row is 46.5 | count |
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
WITH
(
SELECT round(argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959), 2)
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'TSLA'
AND window_start >= toDateTime('2022-07-20 00:00:00') AND window_start < toDateTime('2022-07-21 04:00:00')
) AS jul20_close,
(
SELECT count()
FROM global_markets.stocks_sec_edgar_index
WHERE cik = '0001318605' AND filing_date = '2022-07-20' AND form_type = '8-K'
) AS eightk_count
SELECT
eightk_count AS disclosure_8k_on_file,
jul20_close AS prior_close,
round(argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959), 2) AS jul21_close,
round((argMaxIf(toFloat64(close), window_start, (toHour(toTimeZone(window_start, 'America/New_York')) * 60 + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959) / jul20_close - 1) * 100, 1) AS next_session_change_pct,
round(toFloat64(sum(volume)) / 1e6, 1) AS jul21_shares_m
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'TSLA'
AND window_start >= toDateTime('2022-07-21 00:00:00') AND window_start < toDateTime('2022-07-21 23:59:00')
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 analysisTesla's Bitcoin 10-K: Feb 8, 2021 on the Tape
Was February 8 a big day for TSLA? Its own prior five months as the yardstick
scalar 1×4
→
TSLA options on February 8, 2021 vs the prior 20 sessions: contracts and put/call mix
scalar 1×7
→
Tesla's SEC filings dated February 8, 2021: plus the year-end cash the purchase came out of
scalar 1×5
→
TSLA on February 8, 2021: the disclosure session, receipted
scalar 1×11
→
TSLA's next 20 sessions: every close indexed to the February 8, 2021 close
series 21×3
→
TSLA by half-hour: February 8, 2021 regular session
series 13×4
→
See all 2,170 queries →