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.
| tempoh | harga_mula_usd | pulangan_harga_pct |
|---|---|---|
| 1 tahun | 176.58 | 52.6 |
| 3 tahun | 160.26 | 68.2 |
| 5 tahun | 164.36 | 64 |
| 10 tahun | 117.78 | 128.8 |
- Rows × columns
- 4 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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
Gunakan data ini dalam pembantu AI anda
Dibuka sedia untuk ditanya, dengan data halaman ini. Percuma, tanpa akaun.