knitr::opts_chunk$set(echo = TRUE)
# TODO # Features # 1. Plot current trades (distribution of values) # 2. Add configuration # 3. Plot historical volume # 4. Change plots to ggplot # Validation # 1. Check API using httptest - mock API # 2. Add tests for trades functions # Ops # 1. Automate date # 2. Add code coverageon on travis
# Check API url_res <- check_cb_api(coinbase_url = "https://api.pro.coinbase.com/products")
# Bitcoin distribution btc_trades <- get_trades_sample() btc_trades_all <- combine_trades(btc_trades) plot_coin(btc_trades_all) pc_buy(btc_trades_all) median(btc_trades_all$value)
# Algorand distribution btc_trades <- get_trades_sample(coin_pair = "ALGO-USD") btc_trades_all <- combine_trades(btc_trades) plot_coin(btc_trades_all) pc_buy(btc_trades_all) median(btc_trades_all$value)
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.