├── .DS_Store ├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-RELEASE ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── api-alphavantager.R ├── api-quandl.R ├── api-tiingo.R ├── attach.R ├── data.R ├── deprecated.R ├── excel-date-functions.R ├── excel-financial-math-functions.R ├── excel-if-functions.R ├── excel-pivot-table.R ├── excel-ref-functions.R ├── excel-stat-mutation-functions.R ├── excel-stat-summary-functions.R ├── ggplot-coord_date.R ├── ggplot-geom_bbands.R ├── ggplot-geom_chart.R ├── ggplot-geom_ma.R ├── ggplot-scale_manual.R ├── ggplot-theme_tq.R ├── global_vars.R ├── sysdata.rda ├── tidyquant-package.R ├── tq_get.R ├── tq_mutate.R ├── tq_performance.R ├── tq_portfolio.R ├── tq_stock_list.R ├── tq_transmute.R ├── utils-dates.R ├── utils-downloaders.R ├── utils-formatting.R ├── utils-pipe.R ├── utils-validation.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── FANG.R ├── FANG.csv ├── data_raw_scripts.R ├── sample_img_1_volatility.R ├── sample_img_2_stock_returns.R ├── sample_img_3_portfolio_returns.R ├── stock_index.RDS └── yahoo_tags.RDS ├── data └── FANG.rda ├── man ├── FANG.Rd ├── av_api_key.Rd ├── coord_x_date.Rd ├── deprecated.Rd ├── excel_date_functions.Rd ├── excel_financial_math_functions.Rd ├── excel_if_functions.Rd ├── excel_pivot_table.Rd ├── excel_ref_functions.Rd ├── excel_stat_mutation_functions.Rd ├── excel_stat_summary_functions.Rd ├── figures │ ├── .DS_Store │ ├── logo.png │ ├── sample_img_1_volatility.png │ ├── sample_img_2_stock_returns.png │ └── sample_img_3_portfolio_returns.png ├── geom_bbands.Rd ├── geom_chart.Rd ├── geom_ma.Rd ├── palette_tq.Rd ├── pipe.Rd ├── quandl_api_key.Rd ├── quandl_search.Rd ├── scale_manual.Rd ├── theme_tq.Rd ├── tidyquant-package.Rd ├── tidyquant_conflicts.Rd ├── tiingo_api_key.Rd ├── tq_get.Rd ├── tq_index.Rd ├── tq_mutate.Rd ├── tq_performance.Rd └── tq_portfolio.Rd ├── pkgdown ├── extra.css └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── .cache.rds ├── README.html ├── README.md ├── checks.rds ├── problems.md └── run_revdep.R ├── tests ├── testthat.R └── testthat │ ├── test-excel-pivot_table.R │ ├── test-index-tq_index.R │ ├── test-index_tq_exchange.R │ ├── test-tq_get_economic_data.R │ ├── test-tq_get_stock_prices.R │ ├── test-tq_mutate.R │ ├── test-tq_performance.R │ ├── test-tq_portfolio.R │ └── test-tq_transmute.R ├── tidyquant.Rproj └── vignettes ├── .DS_Store ├── .gitignore ├── TQ00-introduction-to-tidyquant.Rmd ├── TQ01-core-functions-in-tidyquant.Rmd ├── TQ02-quant-integrations-in-tidyquant.Rmd ├── TQ03-scaling-and-modeling-with-tidyquant.Rmd ├── TQ04-charting-with-tidyquant.Rmd ├── TQ05-performance-analysis-with-tidyquant.Rmd ├── TQ06-excel-in-r.Rmd ├── perfomance_analysis_workflow.png └── r-for-excel-users.jpg /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Matt Dancho 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/api-alphavantager.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/api-alphavantager.R -------------------------------------------------------------------------------- /R/api-quandl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/api-quandl.R -------------------------------------------------------------------------------- /R/api-tiingo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/api-tiingo.R -------------------------------------------------------------------------------- /R/attach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/attach.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/data.R -------------------------------------------------------------------------------- /R/deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/deprecated.R -------------------------------------------------------------------------------- /R/excel-date-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-date-functions.R -------------------------------------------------------------------------------- /R/excel-financial-math-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-financial-math-functions.R -------------------------------------------------------------------------------- /R/excel-if-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-if-functions.R -------------------------------------------------------------------------------- /R/excel-pivot-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-pivot-table.R -------------------------------------------------------------------------------- /R/excel-ref-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-ref-functions.R -------------------------------------------------------------------------------- /R/excel-stat-mutation-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-stat-mutation-functions.R -------------------------------------------------------------------------------- /R/excel-stat-summary-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/excel-stat-summary-functions.R -------------------------------------------------------------------------------- /R/ggplot-coord_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/ggplot-coord_date.R -------------------------------------------------------------------------------- /R/ggplot-geom_bbands.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/ggplot-geom_bbands.R -------------------------------------------------------------------------------- /R/ggplot-geom_chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/ggplot-geom_chart.R -------------------------------------------------------------------------------- /R/ggplot-geom_ma.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/ggplot-geom_ma.R -------------------------------------------------------------------------------- /R/ggplot-scale_manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/ggplot-scale_manual.R -------------------------------------------------------------------------------- /R/ggplot-theme_tq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/ggplot-theme_tq.R -------------------------------------------------------------------------------- /R/global_vars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/global_vars.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/tidyquant-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tidyquant-package.R -------------------------------------------------------------------------------- /R/tq_get.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tq_get.R -------------------------------------------------------------------------------- /R/tq_mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tq_mutate.R -------------------------------------------------------------------------------- /R/tq_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tq_performance.R -------------------------------------------------------------------------------- /R/tq_portfolio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tq_portfolio.R -------------------------------------------------------------------------------- /R/tq_stock_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tq_stock_list.R -------------------------------------------------------------------------------- /R/tq_transmute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/tq_transmute.R -------------------------------------------------------------------------------- /R/utils-dates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/utils-dates.R -------------------------------------------------------------------------------- /R/utils-downloaders.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/utils-downloaders.R -------------------------------------------------------------------------------- /R/utils-formatting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/utils-formatting.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils-validation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/utils-validation.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/FANG.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/FANG.R -------------------------------------------------------------------------------- /data-raw/FANG.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/FANG.csv -------------------------------------------------------------------------------- /data-raw/data_raw_scripts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/data_raw_scripts.R -------------------------------------------------------------------------------- /data-raw/sample_img_1_volatility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/sample_img_1_volatility.R -------------------------------------------------------------------------------- /data-raw/sample_img_2_stock_returns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/sample_img_2_stock_returns.R -------------------------------------------------------------------------------- /data-raw/sample_img_3_portfolio_returns.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/sample_img_3_portfolio_returns.R -------------------------------------------------------------------------------- /data-raw/stock_index.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/stock_index.RDS -------------------------------------------------------------------------------- /data-raw/yahoo_tags.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data-raw/yahoo_tags.RDS -------------------------------------------------------------------------------- /data/FANG.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/data/FANG.rda -------------------------------------------------------------------------------- /man/FANG.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/FANG.Rd -------------------------------------------------------------------------------- /man/av_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/av_api_key.Rd -------------------------------------------------------------------------------- /man/coord_x_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/coord_x_date.Rd -------------------------------------------------------------------------------- /man/deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/deprecated.Rd -------------------------------------------------------------------------------- /man/excel_date_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_date_functions.Rd -------------------------------------------------------------------------------- /man/excel_financial_math_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_financial_math_functions.Rd -------------------------------------------------------------------------------- /man/excel_if_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_if_functions.Rd -------------------------------------------------------------------------------- /man/excel_pivot_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_pivot_table.Rd -------------------------------------------------------------------------------- /man/excel_ref_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_ref_functions.Rd -------------------------------------------------------------------------------- /man/excel_stat_mutation_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_stat_mutation_functions.Rd -------------------------------------------------------------------------------- /man/excel_stat_summary_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/excel_stat_summary_functions.Rd -------------------------------------------------------------------------------- /man/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/figures/.DS_Store -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/sample_img_1_volatility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/figures/sample_img_1_volatility.png -------------------------------------------------------------------------------- /man/figures/sample_img_2_stock_returns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/figures/sample_img_2_stock_returns.png -------------------------------------------------------------------------------- /man/figures/sample_img_3_portfolio_returns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/figures/sample_img_3_portfolio_returns.png -------------------------------------------------------------------------------- /man/geom_bbands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/geom_bbands.Rd -------------------------------------------------------------------------------- /man/geom_chart.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/geom_chart.Rd -------------------------------------------------------------------------------- /man/geom_ma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/geom_ma.Rd -------------------------------------------------------------------------------- /man/palette_tq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/palette_tq.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/quandl_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/quandl_api_key.Rd -------------------------------------------------------------------------------- /man/quandl_search.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/quandl_search.Rd -------------------------------------------------------------------------------- /man/scale_manual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/scale_manual.Rd -------------------------------------------------------------------------------- /man/theme_tq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/theme_tq.Rd -------------------------------------------------------------------------------- /man/tidyquant-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tidyquant-package.Rd -------------------------------------------------------------------------------- /man/tidyquant_conflicts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tidyquant_conflicts.Rd -------------------------------------------------------------------------------- /man/tiingo_api_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tiingo_api_key.Rd -------------------------------------------------------------------------------- /man/tq_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tq_get.Rd -------------------------------------------------------------------------------- /man/tq_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tq_index.Rd -------------------------------------------------------------------------------- /man/tq_mutate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tq_mutate.Rd -------------------------------------------------------------------------------- /man/tq_performance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tq_performance.Rd -------------------------------------------------------------------------------- /man/tq_portfolio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/man/tq_portfolio.Rd -------------------------------------------------------------------------------- /pkgdown/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/extra.css -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/.cache.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/revdep/.cache.rds -------------------------------------------------------------------------------- /revdep/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/revdep/README.html -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/checks.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/revdep/checks.rds -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /revdep/run_revdep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/revdep/run_revdep.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-excel-pivot_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-excel-pivot_table.R -------------------------------------------------------------------------------- /tests/testthat/test-index-tq_index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-index-tq_index.R -------------------------------------------------------------------------------- /tests/testthat/test-index_tq_exchange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-index_tq_exchange.R -------------------------------------------------------------------------------- /tests/testthat/test-tq_get_economic_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-tq_get_economic_data.R -------------------------------------------------------------------------------- /tests/testthat/test-tq_get_stock_prices.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-tq_get_stock_prices.R -------------------------------------------------------------------------------- /tests/testthat/test-tq_mutate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-tq_mutate.R -------------------------------------------------------------------------------- /tests/testthat/test-tq_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-tq_performance.R -------------------------------------------------------------------------------- /tests/testthat/test-tq_portfolio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-tq_portfolio.R -------------------------------------------------------------------------------- /tests/testthat/test-tq_transmute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tests/testthat/test-tq_transmute.R -------------------------------------------------------------------------------- /tidyquant.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/tidyquant.Rproj -------------------------------------------------------------------------------- /vignettes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/.DS_Store -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/TQ00-introduction-to-tidyquant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ00-introduction-to-tidyquant.Rmd -------------------------------------------------------------------------------- /vignettes/TQ01-core-functions-in-tidyquant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ01-core-functions-in-tidyquant.Rmd -------------------------------------------------------------------------------- /vignettes/TQ02-quant-integrations-in-tidyquant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ02-quant-integrations-in-tidyquant.Rmd -------------------------------------------------------------------------------- /vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ03-scaling-and-modeling-with-tidyquant.Rmd -------------------------------------------------------------------------------- /vignettes/TQ04-charting-with-tidyquant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ04-charting-with-tidyquant.Rmd -------------------------------------------------------------------------------- /vignettes/TQ05-performance-analysis-with-tidyquant.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ05-performance-analysis-with-tidyquant.Rmd -------------------------------------------------------------------------------- /vignettes/TQ06-excel-in-r.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/TQ06-excel-in-r.Rmd -------------------------------------------------------------------------------- /vignettes/perfomance_analysis_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/perfomance_analysis_workflow.png -------------------------------------------------------------------------------- /vignettes/r-for-excel-users.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/business-science/tidyquant/HEAD/vignettes/r-for-excel-users.jpg --------------------------------------------------------------------------------