1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Googleスプレッドシートで米国株の株価推移をSPARKLINEで表示する

Last updated at Posted at 2021-12-12

SPARKLINE関数とGOOGLEFINANCE関数を組み合わせて、米国株の株価推移をSPARKLINEで表示することができます。
画像のSPARKLINEはアップル社の過去1年分の株価推移です。
20211212_1.png

過去1年分の株価データを取得する

構文
GOOGLEFINANCE(銘柄, [属性], [開始日], [終了日|日数], [間隔])

まずはGOOGLEFINANCE関数で過去1年分の株価データを取得します。
=GOOGLEFINANCE("NASDAQ:AAPL","price", TODAY()-365, TODAY())

過去1年分の株価データをSPARKLINE関数に渡す

構文
SPARKLINE(データ, [オプション])

SPARKLINE関数に前項のGOOGLEFINANCE関数を埋め込みます。
=SPARKLINE(GOOGLEFINANCE("NASDAQ:AAPL","price", TODAY()-365, TODAY()))
これで365日分の株価推移が表示されます。

関連記事

以上、最後まで読んでいただき、ありがとうございました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?