├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── weekly-data-update.yml ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── REPRODUCTION.md ├── app.py ├── data ├── economics_data.db ├── snp_500_minute_yfinance.parquet └── test_db.db ├── interactive_notebooks └── data_visualization.py ├── notebooks └── manual_start.ipynb ├── pages ├── __init__.py ├── crypto_markets.py ├── currency_markets.py ├── economic_indicators.py ├── interest_rates.py └── stock_market.py ├── requirements.txt ├── scripts ├── btc_minute_data.py ├── daily_job.sh ├── fred_data_retrieval.py └── minute_job.sh ├── static ├── css │ └── style.css └── images │ ├── dashboard_preview.png │ └── logo.png └── utils.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/weekly-data-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/.github/workflows/weekly-data-update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # data/ 2 | *.pyc 3 | __pycache__/ 4 | .DS_Store 5 | 6 | venv/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/README.md -------------------------------------------------------------------------------- /REPRODUCTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/REPRODUCTION.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/app.py -------------------------------------------------------------------------------- /data/economics_data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/data/economics_data.db -------------------------------------------------------------------------------- /data/snp_500_minute_yfinance.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/data/snp_500_minute_yfinance.parquet -------------------------------------------------------------------------------- /data/test_db.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/data/test_db.db -------------------------------------------------------------------------------- /interactive_notebooks/data_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/interactive_notebooks/data_visualization.py -------------------------------------------------------------------------------- /notebooks/manual_start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/notebooks/manual_start.ipynb -------------------------------------------------------------------------------- /pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/pages/__init__.py -------------------------------------------------------------------------------- /pages/crypto_markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/pages/crypto_markets.py -------------------------------------------------------------------------------- /pages/currency_markets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/pages/currency_markets.py -------------------------------------------------------------------------------- /pages/economic_indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/pages/economic_indicators.py -------------------------------------------------------------------------------- /pages/interest_rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/pages/interest_rates.py -------------------------------------------------------------------------------- /pages/stock_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/pages/stock_market.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/btc_minute_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/scripts/btc_minute_data.py -------------------------------------------------------------------------------- /scripts/daily_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/scripts/daily_job.sh -------------------------------------------------------------------------------- /scripts/fred_data_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/scripts/fred_data_retrieval.py -------------------------------------------------------------------------------- /scripts/minute_job.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/scripts/minute_job.sh -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/images/dashboard_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/static/images/dashboard_preview.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realmistic/economics-workshop-dec-2024/HEAD/utils.py --------------------------------------------------------------------------------