The five widest AAPL sessions of August 2026 for the same $5,000 account
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-20, from What Replaced the PDT Rule? Intraday Margin.
| label | range_pct | deficit_at_low_usd |
|---|---|---|
| Mon Aug 3 | 2.98 | 340 |
| Thu Aug 20 | 3.03 | 322 |
| Mon Aug 31 | 2.64 | 319 |
| Thu Aug 6 | 2.25 | 244 |
| Fri Aug 21 | 1.72 | 242 |
- Rows × columns
- 5 × 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 |
|---|---|---|---|
label |
text | 5 distinct values (Fri Aug 21, Mon Aug 3, Mon Aug 31…) | |
range_pct |
number | 1.72 to 3.03 | percent |
deficit_at_low_usd |
number | 242 to 340 | 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
formatDateTime(date, '%a %b %e') AS label,
round(100 * (toFloat64(max(high)) - toFloat64(min(low))) / toFloat64(any(open)), 2) AS range_pct,
toInt64(round(greatest(0, 0.75 * 20000 * (1 - toFloat64(min(low)) / toFloat64(any(open)))), 0)) AS deficit_at_low_usd
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'AAPL'
AND date >= '2026-08-01'
AND date < '2026-09-01'
AND open > 0
GROUP BY date
ORDER BY deficit_at_low_usd DESC
LIMIT 5
עבדו עם הנתונים האלה בעוזר ה-AI שלכם
נפתח מוכן לשאילתות, עם הנתונים של העמוד הזה. בחינם, בלי חשבון.