Skip to content

zamorarr/gdaxr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Travis-CI Build Status Coverage Status

Overview

gdaxr provides an R interface for making requests to the GDAX API. This package is still under development and not all endpoints have been implemented yet.

Please see the official GDAX API reference for more information on the web API.

Example usage

library(gdaxr)
accounts <- get_accounts()

# look at first account
accounts[[1]]

Installation and Setup

Installation can be done via devtools.

devtools::install_github("zamorarr/gdaxr")

API Authentication

API key authentication requires each request to be signed. You can create and activate new API keys in your GDAX API settings.

This package assumes you have set your GDAX_KEY, GDAX_SECRET, and GDAX_PASSPHRASE environment variables to the values provided when you created a new API key. Please ensure these are set in your ~/.Renviron file and check with

Sys.getenv("GDAX_KEY")
Sys.getenv("GDAX_SECRET")
Sys.getenv("GDAX_PASSPHRASE")

Releases

No releases published

Packages

No packages published

Languages