├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check-cron.yaml │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage-cron.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── assertions.R ├── auth.R ├── browse.R ├── clean.R ├── content_downloader.R ├── fundamentals-definitions.R ├── fundamentals-meta.R ├── fundamentals-metrics.R ├── fundamentals-statements.R ├── fx-prices.R ├── fx-quote.R ├── latest.R ├── meta.R ├── news.R ├── prices.R ├── quote.R ├── riingo-package.R ├── safety.R ├── ticker_info.R ├── time_zones.R ├── url_constructor.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── man ├── convert_to_local_time.Rd ├── riingo-package.Rd ├── riingo_browse.Rd ├── riingo_crypto_latest.Rd ├── riingo_crypto_meta.Rd ├── riingo_crypto_prices.Rd ├── riingo_crypto_quote.Rd ├── riingo_fundamentals_definitions.Rd ├── riingo_fundamentals_meta.Rd ├── riingo_fundamentals_metrics.Rd ├── riingo_fundamentals_statements.Rd ├── riingo_fx_prices.Rd ├── riingo_fx_quote.Rd ├── riingo_iex_latest.Rd ├── riingo_iex_prices.Rd ├── riingo_iex_quote.Rd ├── riingo_latest.Rd ├── riingo_meta.Rd ├── riingo_news.Rd ├── riingo_prices.Rd ├── riingo_token.Rd └── ticker_info.Rd ├── riingo.Rproj └── tests ├── testthat.R └── testthat ├── helper-maybe-closed.R ├── helper-skip-token.R ├── test-assertions.R ├── test-auth.R ├── test-fundamentals-definitions.R ├── test-fundamentals-meta.R ├── test-fundamentals-metrics.R ├── test-fundamentals-statements.R ├── test-fx-prices.R ├── test-fx-quote.R ├── test-latest.R ├── test-meta.R ├── test-news.R ├── test-prices.R └── test-quote.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/.github/workflows/R-CMD-check-cron.yaml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage-cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/.github/workflows/test-coverage-cron.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | .Rproj.user 4 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Davis Vaughan 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/assertions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/assertions.R -------------------------------------------------------------------------------- /R/auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/auth.R -------------------------------------------------------------------------------- /R/browse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/browse.R -------------------------------------------------------------------------------- /R/clean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/clean.R -------------------------------------------------------------------------------- /R/content_downloader.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/content_downloader.R -------------------------------------------------------------------------------- /R/fundamentals-definitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/fundamentals-definitions.R -------------------------------------------------------------------------------- /R/fundamentals-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/fundamentals-meta.R -------------------------------------------------------------------------------- /R/fundamentals-metrics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/fundamentals-metrics.R -------------------------------------------------------------------------------- /R/fundamentals-statements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/fundamentals-statements.R -------------------------------------------------------------------------------- /R/fx-prices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/fx-prices.R -------------------------------------------------------------------------------- /R/fx-quote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/fx-quote.R -------------------------------------------------------------------------------- /R/latest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/latest.R -------------------------------------------------------------------------------- /R/meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/meta.R -------------------------------------------------------------------------------- /R/news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/news.R -------------------------------------------------------------------------------- /R/prices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/prices.R -------------------------------------------------------------------------------- /R/quote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/quote.R -------------------------------------------------------------------------------- /R/riingo-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/riingo-package.R -------------------------------------------------------------------------------- /R/safety.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/safety.R -------------------------------------------------------------------------------- /R/ticker_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/ticker_info.R -------------------------------------------------------------------------------- /R/time_zones.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/time_zones.R -------------------------------------------------------------------------------- /R/url_constructor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/url_constructor.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/convert_to_local_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/convert_to_local_time.Rd -------------------------------------------------------------------------------- /man/riingo-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo-package.Rd -------------------------------------------------------------------------------- /man/riingo_browse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_browse.Rd -------------------------------------------------------------------------------- /man/riingo_crypto_latest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_crypto_latest.Rd -------------------------------------------------------------------------------- /man/riingo_crypto_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_crypto_meta.Rd -------------------------------------------------------------------------------- /man/riingo_crypto_prices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_crypto_prices.Rd -------------------------------------------------------------------------------- /man/riingo_crypto_quote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_crypto_quote.Rd -------------------------------------------------------------------------------- /man/riingo_fundamentals_definitions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_fundamentals_definitions.Rd -------------------------------------------------------------------------------- /man/riingo_fundamentals_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_fundamentals_meta.Rd -------------------------------------------------------------------------------- /man/riingo_fundamentals_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_fundamentals_metrics.Rd -------------------------------------------------------------------------------- /man/riingo_fundamentals_statements.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_fundamentals_statements.Rd -------------------------------------------------------------------------------- /man/riingo_fx_prices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_fx_prices.Rd -------------------------------------------------------------------------------- /man/riingo_fx_quote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_fx_quote.Rd -------------------------------------------------------------------------------- /man/riingo_iex_latest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_iex_latest.Rd -------------------------------------------------------------------------------- /man/riingo_iex_prices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_iex_prices.Rd -------------------------------------------------------------------------------- /man/riingo_iex_quote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_iex_quote.Rd -------------------------------------------------------------------------------- /man/riingo_latest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_latest.Rd -------------------------------------------------------------------------------- /man/riingo_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_meta.Rd -------------------------------------------------------------------------------- /man/riingo_news.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_news.Rd -------------------------------------------------------------------------------- /man/riingo_prices.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_prices.Rd -------------------------------------------------------------------------------- /man/riingo_token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/riingo_token.Rd -------------------------------------------------------------------------------- /man/ticker_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/man/ticker_info.Rd -------------------------------------------------------------------------------- /riingo.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/riingo.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-maybe-closed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/helper-maybe-closed.R -------------------------------------------------------------------------------- /tests/testthat/helper-skip-token.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/helper-skip-token.R -------------------------------------------------------------------------------- /tests/testthat/test-assertions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-assertions.R -------------------------------------------------------------------------------- /tests/testthat/test-auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-auth.R -------------------------------------------------------------------------------- /tests/testthat/test-fundamentals-definitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-fundamentals-definitions.R -------------------------------------------------------------------------------- /tests/testthat/test-fundamentals-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-fundamentals-meta.R -------------------------------------------------------------------------------- /tests/testthat/test-fundamentals-metrics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-fundamentals-metrics.R -------------------------------------------------------------------------------- /tests/testthat/test-fundamentals-statements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-fundamentals-statements.R -------------------------------------------------------------------------------- /tests/testthat/test-fx-prices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-fx-prices.R -------------------------------------------------------------------------------- /tests/testthat/test-fx-quote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-fx-quote.R -------------------------------------------------------------------------------- /tests/testthat/test-latest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-latest.R -------------------------------------------------------------------------------- /tests/testthat/test-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-meta.R -------------------------------------------------------------------------------- /tests/testthat/test-news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-news.R -------------------------------------------------------------------------------- /tests/testthat/test-prices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-prices.R -------------------------------------------------------------------------------- /tests/testthat/test-quote.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/riingo/HEAD/tests/testthat/test-quote.R --------------------------------------------------------------------------------