STRASMORE/EXPLORE 2,500 QUERIES

indexado

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-23, from nke-stock-price-in-euros.

as of series 69×4read in context →
indexado — 69 rows by 4 columns, computed from US exchange, SIP and OPRA data.
monthnke_en_dolaresnke_en_euroseuro_frente_al_dolar
2021-01-01100100100
2021-02-01100.9101.599.4
2021-03-0199.5103.196.5
2021-04-0199.3100.498.9
2021-05-01102.1102100.2
2021-06-01115.6118.897.3
2021-07-01125.4128.997.3
2021-08-01123.3127.496.8
2021-09-01108.7114.794.8
2021-10-01125.2132.594.5
2021-11-01126.7136.792.6
2021-12-01124.8134.392.9
2022-01-01110.8120.991.7
2022-02-01102.2111.991.4
2022-03-01100.7111.890.1
2022-04-0193.3108.785.8
2022-05-018910287.2
2022-06-0176.589.985.1
2022-07-0186103.782.9
2022-08-0179.797.881.5
2022-09-0162.278.379.4
2022-10-0169.486.680.1
2022-11-0182.197.484.3
2022-12-0187.6100.986.8
2023-01-0195.3108.288.1
2023-02-0188.9103.785.7
2023-03-0191.8104.388
2023-04-0194.9106.189.4
2023-05-0178.890.986.7
2023-06-0182.693.388.5
2023-07-0182.692.689.2
2023-08-0176.186.588
2023-09-0171.683.485.8
2023-10-0176.989.685.9
2023-11-0182.593.488.4
2023-12-0181.390.789.6
2024-01-017686.687.7
2024-02-0177.888.787.7
2024-03-0170.380.387.6
2024-04-0169.179.786.6
2024-05-0171.280.888.1
2024-06-0156.464.986.9
2024-07-015663.887.8
2024-08-0162.469.589.7
2024-09-0166.273.390.3
2024-10-0157.765.488.3
2024-11-015968.885.7
2024-12-0156.667.484
2025-01-0157.668.484.2
2025-02-0159.570.684.2
2025-03-0147.554.287.7
2025-04-0142.245.991.9
2025-05-0145.449.292.1
2025-06-0153.255.795.5
2025-07-0155.960.592.5
2025-08-0157.961.194.8
2025-09-0152.254.895.2
2025-10-0148.351.893.4
2025-11-0148.451.494
2025-12-0147.750.195.2
2026-01-0146.348.196.1
2026-02-0146.548.695.8
2026-03-0139.542.293.7
2026-04-0133.234.995.1
2026-05-0134.636.694.6
2026-06-0130.733.292.6
2026-07-0131.233.493.5
2026-08-0129.23194.2
2026-09-012729.392.5
Rows × columns
69 × 4
Period covered
to
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 indexado, derived from the stored result.
ColumnTypeRangeNotes
month date 2021-01-01 to 2026-09-01
nke_en_dolares number 27 to 126.7
nke_en_euros number 29.3 to 136.7
euro_frente_al_dolar number 79.4 to 100.2

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 nke AS
(
    SELECT
        date,
        argMax(toFloat64(close), _ingest_time) AS px
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'NKE'
      AND date >= '2021-01-01'
    GROUP BY date
),
euro AS
(
    SELECT
        date,
        argMax(toFloat64(close), _ingest_time) AS px
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'FXE'
      AND date >= '2021-01-01'
    GROUP BY date
),
diario AS
(
    SELECT
        n.date        AS date,
        n.px          AS usd,
        e.px          AS fx,
        n.px / e.px   AS eur
    FROM nke AS n
    INNER JOIN euro AS e ON e.date = n.date
),
mensual AS
(
    SELECT
        toStartOfMonth(date) AS m,
        argMax(usd, date)    AS usd,
        argMax(eur, date)    AS eur,
        argMax(fx, date)     AS fx
    FROM diario
    GROUP BY m
),
base AS
(
    SELECT
        argMin(usd, m) AS usd0,
        argMin(eur, m) AS eur0,
        argMin(fx, m)  AS fx0
    FROM mensual
)
SELECT
    toString(x.m)                     AS month,
    round(x.usd / b.usd0 * 100, 1)    AS nke_en_dolares,
    round(x.eur / b.eur0 * 100, 1)    AS nke_en_euros,
    round(x.fx  / b.fx0  * 100, 1)    AS euro_frente_al_dolar
FROM mensual AS x
CROSS JOIN base AS b
ORDER BY x.m
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.