STRASMORE/EXPLORE 2,500 QUERIES

pulangan_tempoh

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 jnj-stock-price-in-myr.

as of ranking 4×3read in context →
pulangan_tempoh — 4 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tempohharga_mula_usdpulangan_harga_pct
1 tahun176.5852.6
3 tahun160.2668.2
5 tahun164.3664
10 tahun117.78128.8
Rows × columns
4 × 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 pulangan_tempoh, derived from the stored result.
ColumnTypeRangeNotes
tempoh text 4 distinct values (1 tahun, 10 tahun, 3 tahun…)
harga_mula_usd number 117.78 to 176.58 US dollars
pulangan_harga_pct number 52.6 to 128.8 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 max(date)
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'JNJ'
    ) AS hari_akhir,
    (
        SELECT argMax(toFloat64(close), date)
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'JNJ'
    ) AS harga_akhir
SELECT
    concat(toString(tahun), ' tahun')                                   AS tempoh,
    round(argMin(toFloat64(close), date), 2)                            AS harga_mula_usd,
    round((harga_akhir / argMin(toFloat64(close), date) - 1) * 100, 1)  AS pulangan_harga_pct
FROM global_markets.stocks_daily_aggs
ARRAY JOIN [1, 3, 5, 10] AS tahun
WHERE ticker = 'JNJ'
  AND date >= hari_akhir - tahun * 365
GROUP BY tahun
ORDER BY tahun
⌘/Ctrl + Enter

Work with this data in your AI assistant

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