STRASMORE/EXPLORE 2,173 QUERIES

How long the worst losing run of a 200 trade series usually is, at a 70 percent win rate

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-17, from How Long a Losing Streak Is Normal.

as of ranking 7×3read in context →
How long the worst losing run of a 200 trade series usually is, at a 70 percent win rate — 7 rows by 3 columns, computed from US exchange, SIP and OPRA data.
longest_losing_runpct_of_series_exactlypct_of_series_at_least
2 losses1.79100
3 losses29.9198.21
4 losses39.6768.3
5 losses19.1128.63
6 losses6.599.52
7 losses2.052.94
8 losses0.620.88
Rows × columns
7 × 3
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for How long the worst losing run of a 200 trade series usually is, at a 70 percent win rate, derived from the stored result.
ColumnTypeRangeNotes
longest_losing_run text 7 distinct values (2 losses, 3 losses, 4 losses…)
pct_of_series_exactly number 0.62 to 39.67 percent
pct_of_series_at_least number 0.88 to 100 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
    concat(toString(run_length), ' losses') AS longest_losing_run,
    round(100 * (no_run_of_longer - no_run_of_this), 2) AS pct_of_series_exactly,
    round(100 * (1 - no_run_of_this), 2) AS pct_of_series_at_least
FROM
(
    SELECT
        run_length,
        arraySum(arrayFold(
            (run_mass, trade) -> arrayPushFront(
                arrayMap(mass -> mass * 0.30, arrayPopBack(run_mass)),
                0.70 * arraySum(run_mass)),
            range(200),
            arrayMap(slot -> if(slot = 0, 1.0, 0.0), range(run_length)))) AS no_run_of_this,
        arraySum(arrayFold(
            (run_mass, trade) -> arrayPushFront(
                arrayMap(mass -> mass * 0.30, arrayPopBack(run_mass)),
                0.70 * arraySum(run_mass)),
            range(200),
            arrayMap(slot -> if(slot = 0, 1.0, 0.0), range(run_length + 1)))) AS no_run_of_longer
    FROM
    (
        SELECT arrayJoin([2, 3, 4, 5, 6, 7, 8]) AS run_length
    )
)
ORDER BY run_length

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 analysisHow Long a Losing Streak Is Normal
Chance of at least one losing streak of five, eight or ten in a 200 trade series ranking 5×4 Chance of at least one five loss run at a 70 percent win rate, by series length ranking 5×2 Drawdown from an eight and a ten loss streak, by risk per trade ranking 4×4 One named window against somewhere in a 200 trade series, at a 70 percent win rate ranking 3×4 One decade of S&P 500 daily returns compounded at eight fixed bet sizes: ending wealth and worst drawdown ranking 8×3 The same Kelly calculation on the S&P 500 tracker, year by year, 2016 through 2025 table 10×5 See all 2,173 queries →