├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── app.R ├── crypto_data_utils.R ├── fx_data_utils.R ├── macro_pod_utils.R ├── rwlab_gcs.R ├── rwlab_lab_auth.R ├── sysdata.rda └── utils-pipe.R ├── README.Rmd ├── README.md ├── examples └── colab │ ├── Rersearch_Pod_Quickstart.ipynb │ ├── colab_bspm_setup.sh │ └── load_libraries.R ├── man ├── crypto_get_binance_coin_m_perps_1h.Rd ├── crypto_get_binance_coin_m_perps_funding.Rd ├── crypto_get_binance_perps_1h.Rd ├── crypto_get_binance_perps_funding.Rd ├── crypto_get_binance_spot_1d.Rd ├── crypto_get_binance_spot_1h.Rd ├── crypto_get_clean_spot.Rd ├── crypto_get_coincodex.Rd ├── crypto_get_coinmetrics.Rd ├── crypto_get_expired_futures.Rd ├── crypto_get_futures.Rd ├── crypto_get_index.Rd ├── crypto_get_lending_rates.Rd ├── crypto_get_minute_perpetuals.Rd ├── crypto_get_perp_rates.Rd ├── crypto_get_rebalance_trades.Rd ├── crypto_get_spot.Rd ├── crypto_get_top_of_book_sample.Rd ├── crypto_get_trades_sample.Rd ├── fx_convert_common_quote_currency.Rd ├── fx_get_asset_list.Rd ├── fx_get_daily_OHLC.Rd ├── fx_get_daily_OHLC_ticker.Rd ├── fx_get_hourly_OHLC.Rd ├── fx_get_hourly_OHLC_ticker.Rd ├── fx_get_policy_rates.Rd ├── fx_get_unique_currencies.Rd ├── fx_total_return_index.Rd ├── get_lab_app.Rd ├── get_pod_meta.Rd ├── list_pods.Rd ├── load_lab_object.Rd ├── macro_get_close_price_momo.Rd ├── macro_get_earnings.Rd ├── macro_get_expiring_futures.Rd ├── macro_get_expiring_rp_futures.Rd ├── macro_get_expiring_vx_futures.Rd ├── macro_get_govt_bond_returns.Rd ├── macro_get_historical_asset_class.Rd ├── macro_get_historical_short_sale.Rd ├── macro_get_nyse_holidays.Rd ├── macro_get_rates.Rd ├── macro_get_straddles_over_earnings.Rd ├── macro_get_vix_vix3m.Rd ├── pipe.Rd ├── quicksetup.Rd ├── rwlab_data_auth.Rd ├── transfer_lab_object.Rd └── transfer_pod_data.Rd ├── rwRtools.Rproj └── tests └── testthat.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | *.json 5 | scratch/ 6 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Robot Wealth Pty Ltd 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/app.R -------------------------------------------------------------------------------- /R/crypto_data_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/crypto_data_utils.R -------------------------------------------------------------------------------- /R/fx_data_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/fx_data_utils.R -------------------------------------------------------------------------------- /R/macro_pod_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/macro_pod_utils.R -------------------------------------------------------------------------------- /R/rwlab_gcs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/rwlab_gcs.R -------------------------------------------------------------------------------- /R/rwlab_lab_auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/rwlab_lab_auth.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/README.md -------------------------------------------------------------------------------- /examples/colab/Rersearch_Pod_Quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/examples/colab/Rersearch_Pod_Quickstart.ipynb -------------------------------------------------------------------------------- /examples/colab/colab_bspm_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/examples/colab/colab_bspm_setup.sh -------------------------------------------------------------------------------- /examples/colab/load_libraries.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/examples/colab/load_libraries.R -------------------------------------------------------------------------------- /man/crypto_get_binance_coin_m_perps_1h.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_binance_coin_m_perps_1h.Rd -------------------------------------------------------------------------------- /man/crypto_get_binance_coin_m_perps_funding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_binance_coin_m_perps_funding.Rd -------------------------------------------------------------------------------- /man/crypto_get_binance_perps_1h.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_binance_perps_1h.Rd -------------------------------------------------------------------------------- /man/crypto_get_binance_perps_funding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_binance_perps_funding.Rd -------------------------------------------------------------------------------- /man/crypto_get_binance_spot_1d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_binance_spot_1d.Rd -------------------------------------------------------------------------------- /man/crypto_get_binance_spot_1h.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_binance_spot_1h.Rd -------------------------------------------------------------------------------- /man/crypto_get_clean_spot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_clean_spot.Rd -------------------------------------------------------------------------------- /man/crypto_get_coincodex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_coincodex.Rd -------------------------------------------------------------------------------- /man/crypto_get_coinmetrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_coinmetrics.Rd -------------------------------------------------------------------------------- /man/crypto_get_expired_futures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_expired_futures.Rd -------------------------------------------------------------------------------- /man/crypto_get_futures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_futures.Rd -------------------------------------------------------------------------------- /man/crypto_get_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_index.Rd -------------------------------------------------------------------------------- /man/crypto_get_lending_rates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_lending_rates.Rd -------------------------------------------------------------------------------- /man/crypto_get_minute_perpetuals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_minute_perpetuals.Rd -------------------------------------------------------------------------------- /man/crypto_get_perp_rates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_perp_rates.Rd -------------------------------------------------------------------------------- /man/crypto_get_rebalance_trades.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_rebalance_trades.Rd -------------------------------------------------------------------------------- /man/crypto_get_spot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_spot.Rd -------------------------------------------------------------------------------- /man/crypto_get_top_of_book_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_top_of_book_sample.Rd -------------------------------------------------------------------------------- /man/crypto_get_trades_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/crypto_get_trades_sample.Rd -------------------------------------------------------------------------------- /man/fx_convert_common_quote_currency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_convert_common_quote_currency.Rd -------------------------------------------------------------------------------- /man/fx_get_asset_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_asset_list.Rd -------------------------------------------------------------------------------- /man/fx_get_daily_OHLC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_daily_OHLC.Rd -------------------------------------------------------------------------------- /man/fx_get_daily_OHLC_ticker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_daily_OHLC_ticker.Rd -------------------------------------------------------------------------------- /man/fx_get_hourly_OHLC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_hourly_OHLC.Rd -------------------------------------------------------------------------------- /man/fx_get_hourly_OHLC_ticker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_hourly_OHLC_ticker.Rd -------------------------------------------------------------------------------- /man/fx_get_policy_rates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_policy_rates.Rd -------------------------------------------------------------------------------- /man/fx_get_unique_currencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_get_unique_currencies.Rd -------------------------------------------------------------------------------- /man/fx_total_return_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/fx_total_return_index.Rd -------------------------------------------------------------------------------- /man/get_lab_app.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/get_lab_app.Rd -------------------------------------------------------------------------------- /man/get_pod_meta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/get_pod_meta.Rd -------------------------------------------------------------------------------- /man/list_pods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/list_pods.Rd -------------------------------------------------------------------------------- /man/load_lab_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/load_lab_object.Rd -------------------------------------------------------------------------------- /man/macro_get_close_price_momo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_close_price_momo.Rd -------------------------------------------------------------------------------- /man/macro_get_earnings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_earnings.Rd -------------------------------------------------------------------------------- /man/macro_get_expiring_futures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_expiring_futures.Rd -------------------------------------------------------------------------------- /man/macro_get_expiring_rp_futures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_expiring_rp_futures.Rd -------------------------------------------------------------------------------- /man/macro_get_expiring_vx_futures.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_expiring_vx_futures.Rd -------------------------------------------------------------------------------- /man/macro_get_govt_bond_returns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_govt_bond_returns.Rd -------------------------------------------------------------------------------- /man/macro_get_historical_asset_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_historical_asset_class.Rd -------------------------------------------------------------------------------- /man/macro_get_historical_short_sale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_historical_short_sale.Rd -------------------------------------------------------------------------------- /man/macro_get_nyse_holidays.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_nyse_holidays.Rd -------------------------------------------------------------------------------- /man/macro_get_rates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_rates.Rd -------------------------------------------------------------------------------- /man/macro_get_straddles_over_earnings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_straddles_over_earnings.Rd -------------------------------------------------------------------------------- /man/macro_get_vix_vix3m.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/macro_get_vix_vix3m.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/quicksetup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/quicksetup.Rd -------------------------------------------------------------------------------- /man/rwlab_data_auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/rwlab_data_auth.Rd -------------------------------------------------------------------------------- /man/transfer_lab_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/transfer_lab_object.Rd -------------------------------------------------------------------------------- /man/transfer_pod_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/man/transfer_pod_data.Rd -------------------------------------------------------------------------------- /rwRtools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/rwRtools.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RWLab/rwRtools/HEAD/tests/testthat.R --------------------------------------------------------------------------------