Skip to content
master
Go to file
Code
This branch is 15 commits behind dev.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

rgdax 0.6.0

Build Status CRAN_Status_Badge

This package is inspired by official and unofficial wrappers for GDAX API. Please read through the api docs to gain a better understanding of how each end point is likely to work.

There are two main groups of api end points.

Public: All functions belonging to this group start with public_ and can be used without any authentication.

Auth: This category of functions will require API Key, API Secret and Passphrase to connect successfully to the account. To get your api keys, refer to how to create GDAX api keys. The behavior of the functions will also depend upon what kind of access (view, trade or manage) the api keys have.

What is New in this version

News

Supported Functions

Complete List of Supported Public Functions:

  1. candles
  2. daystats
  3. info
  4. orderbook
  5. ticker
  6. time
  7. trades

Complete List of Supported Auth Functions:

  1. account_hist
  2. account
  3. accounts
  4. add_order
  5. cancel_order
  6. fills
  7. holds
  8. profile
  9. pymt_methods

Apart from these two categories, the library also contains a few internal functions which are used across the public and the auth functions:

  1. parse_response
  2. auth

Limitations:

The current version does not support the following key capabilities:

  1. Pagination
  2. Make deposits or withdrawls

How to install:

From CRAN

library(rgdax)

This is same as installing master branch from github.

From Github dev

library(devtools)
install_github("DheerajAgarwal/rgdax", ref="dev")

Some Inspirations

Unofficial Python GDAX Wrapper #The real reason I started this project.

coinbaseexchangeenterorder-r #Helped me break the auth calls.

MTDO's Shiny App #For the data cleaning of most public functions.

URLs

github CRAN

bitbucket DEV

github DEV

License:

MIT

DISCLAIMER Use at your own risk.

You can’t perform that action at this time.