https://github.com/arafipro/usstockchartlite
https://github.com/arafipro/usstockchartlite
python3 streamlit streamlit-webapp
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arafipro/usstockchartlite
- Owner: arafipro
- Created: 2023-08-18T00:00:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-18T00:48:29.000Z (almost 2 years ago)
- Last Synced: 2025-01-24T20:46:53.845Z (4 months ago)
- Topics: python3, streamlit, streamlit-webapp
- Language: Python
- Homepage: https://usstockchartlite-arafipro.streamlit.app/
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 米国株個別銘柄各種チャート簡易版
## 紹介動画
[](https://www.youtube.com/watch?v=rmCL18Jp-9I)
## 米国株のティッカーを入力すると以下のチャートを見ることができます。
1. 株価ローソク足チャート
2. VIXラインチャート
3. VIXローソク足チャート
4. WTI原油先物チャート## 技術スタック
- Python
- Streamlit
- Plotly## 使用手順
### Python 仮想環境を作成
以下のコマンドを実行して仮想環境を作成します。
```bash
python3 -m venv .venv
```### Python 仮想環境を起動
以下のコマンドを実行して仮想環境を起動します。
```bash
# shell zsh
source .venv/bin/activate# shell fish
source .venv/bin/activate.fish
```### Python 仮想環境にパッケージをインストール
以下のコマンドを実行して`requirements.txt`にリストされているすべてのパッケージが仮想環境にインストールします。
```bash
pip3 install -r requirements.txt
```### 起動
以下のコマンドを実行してアプリを起動します。
```bash
streamlit run Top.py
```