├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── SP500_2015to2020.R └── cryptos_2017to2021.R ├── README.Rmd ├── README.md ├── R_buildignore ├── developer_commands.R └── save_data_for_python.R ├── data ├── SP500_2015to2020.RData └── cryptos_2017to2021.RData ├── data_raw ├── SP500.R └── cryptos.R ├── man ├── SP500_2015to2020.Rd └── cryptos_2017to2021.Rd └── python ├── pob_python ├── __init__.py ├── data │ ├── SP500_index_2015to2020.rds │ ├── SP500_stocks_2015to2020.rds │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── cryptos_2017to2021_daily.rds │ └── cryptos_2017to2021_hourly.rds ├── data_loader.py └── example.py └── pyproject.toml /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/SP500_2015to2020.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/R/SP500_2015to2020.R -------------------------------------------------------------------------------- /R/cryptos_2017to2021.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/R/cryptos_2017to2021.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/README.md -------------------------------------------------------------------------------- /R_buildignore/developer_commands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/R_buildignore/developer_commands.R -------------------------------------------------------------------------------- /R_buildignore/save_data_for_python.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/R_buildignore/save_data_for_python.R -------------------------------------------------------------------------------- /data/SP500_2015to2020.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/data/SP500_2015to2020.RData -------------------------------------------------------------------------------- /data/cryptos_2017to2021.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/data/cryptos_2017to2021.RData -------------------------------------------------------------------------------- /data_raw/SP500.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/data_raw/SP500.R -------------------------------------------------------------------------------- /data_raw/cryptos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/data_raw/cryptos.R -------------------------------------------------------------------------------- /man/SP500_2015to2020.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/man/SP500_2015to2020.Rd -------------------------------------------------------------------------------- /man/cryptos_2017to2021.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/man/cryptos_2017to2021.Rd -------------------------------------------------------------------------------- /python/pob_python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/__init__.py -------------------------------------------------------------------------------- /python/pob_python/data/SP500_index_2015to2020.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/data/SP500_index_2015to2020.rds -------------------------------------------------------------------------------- /python/pob_python/data/SP500_stocks_2015to2020.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/data/SP500_stocks_2015to2020.rds -------------------------------------------------------------------------------- /python/pob_python/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pob_python/data/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/data/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /python/pob_python/data/cryptos_2017to2021_daily.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/data/cryptos_2017to2021_daily.rds -------------------------------------------------------------------------------- /python/pob_python/data/cryptos_2017to2021_hourly.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/data/cryptos_2017to2021_hourly.rds -------------------------------------------------------------------------------- /python/pob_python/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/data_loader.py -------------------------------------------------------------------------------- /python/pob_python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pob_python/example.py -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dppalomar/pob/HEAD/python/pyproject.toml --------------------------------------------------------------------------------