STRASMORE/EXPLORE 2,469 QUERIES

walk_forward

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-22, from open-source-tradingview-optimizer.

as of ranking 24×4read in context →
walk_forward — 24 rows by 4 columns, computed from US exchange, SIP and OPRA data.
in_sample_rankcellin_sample_sharpeout_of_sample_sharpe
130 / 501.050.27
225 / 501.020.16
35 / 2001.010.85
420 / 500.980.25
55 / 1500.980.78
610 / 1000.960.71
715 / 500.90.34
815 / 1000.870.69
910 / 2000.840.84
1010 / 1500.810.67
115 / 500.750.62
1215 / 1500.710.76
1315 / 2000.690.97
1425 / 2000.660.95
155 / 1000.660.75
1620 / 1000.650.61
1710 / 500.560.82
1830 / 1500.510.88
1920 / 1500.480.88
2030 / 2000.481.03
2125 / 1500.460.88
2220 / 2000.441.15
2330 / 1000.430.8
2425 / 1000.320.61
Rows × columns
24 × 4
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 walk_forward, derived from the stored result.
ColumnTypeRangeNotes
in_sample_rank number 1 to 24
cell text 24 distinct values (10 / 100, 10 / 150, 10 / 200…)
in_sample_sharpe number 0.32 to 1.05
out_of_sample_sharpe number 0.16 to 1.15

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.

WITH
    series AS
    (
        SELECT arraySort(r -> r.1, groupArray((date, toFloat64(close)))) AS rows_sorted
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'SPY'
          AND date >= '2016-01-04'
          AND date <= '2025-06-30'
    ),
    grid AS
    (
        SELECT
            arrayMap(r -> r.2, rows_sorted)                                         AS px,
            length(arrayFilter(r -> r.1 < toDate('2021-01-01'), rows_sorted))       AS split_at,
            g.1                                                                     AS fast,
            g.2                                                                     AS slow
        FROM series
        ARRAY JOIN
        [
            (5, 50), (5, 100), (5, 150), (5, 200),
            (10, 50), (10, 100), (10, 150), (10, 200),
            (15, 50), (15, 100), (15, 150), (15, 200),
            (20, 50), (20, 100), (20, 150), (20, 200),
            (25, 50), (25, 100), (25, 150), (25, 200),
            (30, 50), (30, 100), (30, 150), (30, 200)
        ] AS g
    ),
    cells AS
    (
        SELECT
            fast,
            slow,
            arrayMap(
                i -> if(arrayAvg(arraySlice(px, i - fast + 1, fast)) > arrayAvg(arraySlice(px, i - slow + 1, slow)),
                        px[i + 1] / px[i] - 1,
                        0.0),
                range(200, split_at)
            ) AS is_rets,
            arrayMap(
                i -> if(arrayAvg(arraySlice(px, i - fast + 1, fast)) > arrayAvg(arraySlice(px, i - slow + 1, slow)),
                        px[i + 1] / px[i] - 1,
                        0.0),
                range(split_at, length(px))
            ) AS oos_rets
        FROM grid
    ),
    scored AS
    (
        SELECT
            concat(toString(fast), ' / ', toString(slow)) AS cell,
            round(arrayAvg(is_rets)
                  / sqrt(arrayAvg(arrayMap(r -> r * r, is_rets)) - pow(arrayAvg(is_rets), 2))
                  * sqrt(252), 2)                         AS in_sample_sharpe,
            round(arrayAvg(oos_rets)
                  / sqrt(arrayAvg(arrayMap(r -> r * r, oos_rets)) - pow(arrayAvg(oos_rets), 2))
                  * sqrt(252), 2)                         AS out_of_sample_sharpe
        FROM cells
    )
SELECT
    row_number() OVER (ORDER BY in_sample_sharpe DESC) AS in_sample_rank,
    cell,
    in_sample_sharpe,
    out_of_sample_sharpe
FROM scored
ORDER BY in_sample_rank
⌘/Ctrl + Enter
More from this analysisopen-source-tradingview-optimizer
ma_grid ranking 24×2 yearly_sharpe ranking 9×2 surface ranking 6×4 Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 See all 2,469 queries →