STRASMORE/EXPLORE 2,469 QUERIES

fx_sensitivity

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 msft-stock-price-in-twd.

as of ranking 9×3read in context →
fx_sensitivity — 9 rows by 3 columns, computed from US exchange, SIP and OPRA data.
usd_twd_change_pctusd_return_pcttwd_return_pct
-2069.0435.23
-1569.0443.68
-1069.0452.14
-569.0460.59
069.0469.04
569.0477.49
1069.0485.94
1569.0494.4
2069.04102.85
Rows × columns
9 × 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 fx_sensitivity, derived from the stored result.
ColumnTypeRangeNotes
usd_twd_change_pct number -20 to 20 percent
usd_return_pct number every row is 69.04 percent
twd_return_pct number 35.23 to 102.85 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.

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
    (
        SELECT round(100 * (argMax(toFloat64(close), date) / argMin(toFloat64(close), date) - 1), 2)
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'MSFT'
          AND date >= today() - 1825
    ) AS msft_5y_usd
SELECT
    toInt32(fx_move)                                                      AS usd_twd_change_pct,
    round(msft_5y_usd, 2)                                                 AS usd_return_pct,
    round(100 * ((1 + msft_5y_usd / 100) * (1 + fx_move / 100) - 1), 2)   AS twd_return_pct
FROM
(
    SELECT arrayJoin([-20, -15, -10, -5, 0, 5, 10, 15, 20]) AS fx_move
)
ORDER BY usd_twd_change_pct
⌘/Ctrl + Enter