├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── crypto ├── 001_crypto_correlation.py ├── 002_implied_volatility_surface_analysis.py ├── 003_volume_profile_market_regime.py ├── 004_bitcoin_log_regression_rainbow.py └── 005_ccxt_documentation.py ├── economics └── 001_fred_data.py ├── geography ├── 001_world_geography.py └── disclaimer.md └── programming └── python └── 001_python_fundamentals.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /crypto/001_crypto_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/crypto/001_crypto_correlation.py -------------------------------------------------------------------------------- /crypto/002_implied_volatility_surface_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/crypto/002_implied_volatility_surface_analysis.py -------------------------------------------------------------------------------- /crypto/003_volume_profile_market_regime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/crypto/003_volume_profile_market_regime.py -------------------------------------------------------------------------------- /crypto/004_bitcoin_log_regression_rainbow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/crypto/004_bitcoin_log_regression_rainbow.py -------------------------------------------------------------------------------- /crypto/005_ccxt_documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/crypto/005_ccxt_documentation.py -------------------------------------------------------------------------------- /economics/001_fred_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/economics/001_fred_data.py -------------------------------------------------------------------------------- /geography/001_world_geography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/geography/001_world_geography.py -------------------------------------------------------------------------------- /geography/disclaimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/geography/disclaimer.md -------------------------------------------------------------------------------- /programming/python/001_python_fundamentals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atlas-research-io/atlas-research-notebooks/HEAD/programming/python/001_python_fundamentals.py --------------------------------------------------------------------------------