Skip to content

arafipro/USStockChartLite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

米国株個別銘柄各種チャート簡易版

紹介動画

米国株のティッカーを入力すると以下のチャートを見ることができます。

  1. 株価ローソク足チャート
  2. VIXラインチャート
  3. VIXローソク足チャート
  4. WTI原油先物チャート

技術スタック

  • Python
  • Streamlit
  • Plotly

使用手順

Python 仮想環境を作成

以下のコマンドを実行して仮想環境を作成します。

python3 -m venv .venv

Python 仮想環境を起動

以下のコマンドを実行して仮想環境を起動します。

# shell zsh
source .venv/bin/activate

# shell fish
source .venv/bin/activate.fish

Python 仮想環境にパッケージをインストール

以下のコマンドを実行してrequirements.txtにリストされているすべてのパッケージが仮想環境にインストールします。

pip3 install -r requirements.txt

起動

以下のコマンドを実行してアプリを起動します。

streamlit run Top.py