Tesla's SEC filings dated February 8, 2021: plus the year-end cash the purchase came out of
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.
tesla filings that day
1
annual reports
1
form type on file
10-K
fy2020 cash bn
19.4
purchase pct of cash
7.7
- 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 |
|---|---|---|---|
tesla_filings_that_day |
number | every row is 1 | |
annual_reports |
number | every row is 1 | |
form_type_on_file |
text | 1 distinct value (10-K) | |
fy2020_cash_bn |
number | every row is 19.4 | |
purchase_pct_of_cash |
number | every row is 7.7 | 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
WITH (
SELECT round(toFloat64(cash_and_equivalents) / 1e9, 1)
FROM global_markets.stocks_balance_sheets
WHERE has(tickers, 'TSLA') AND timeframe = 'annual' AND fiscal_year = 2020
LIMIT 1
) AS yearend_cash_bn
SELECT
count() AS tesla_filings_that_day,
countIf(form_type = '10-K') AS annual_reports,
any(form_type) AS form_type_on_file,
yearend_cash_bn AS fy2020_cash_bn,
round(100 * 1.5 / yearend_cash_bn, 1) AS purchase_pct_of_cash
FROM global_markets.stocks_sec_edgar_index
WHERE filing_date = '2021-02-08'
AND (issuer_name ILIKE '%tesla%' OR cik = '0001318605')
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
→
The 2022 exit: the July 20 disclosure 8-K on file, and TSLA's next session
scalar 1×5
→
TSLA options on February 8, 2021 vs the prior 20 sessions: contracts and put/call mix
scalar 1×7
→
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 →