Position size allowed by a $500 risk budget at each stop distance
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-12, from The 7% Sell Rule Explained: O'Neil's Stop-Loss.
| stop | position_size_usd |
|---|---|
| 7% stop | 7143 |
| 10% stop | 5000 |
| 15% stop | 3333 |
- Rows × columns
- 3 × 2
- 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 |
|---|---|---|---|
stop |
text | 3 distinct values (10% stop, 15% stop, 7% stop) | |
position_size_usd |
number | 3,333 to 7,143 | 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
concat(toString(stop_pct), '% stop') AS stop,
round(500 / (stop_pct / 100)) AS position_size_usd
FROM
(
SELECT arrayJoin([7, 10, 15]) AS stop_pct
)
ORDER BY stop_pct