All Projects → DheerajAgarwal → rgdax

DheerajAgarwal / rgdax

Licence: other
Wrapper for Coinbase pro (erstwhile GDAX) Cryptocurrency exchange

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to rgdax

Coinbase.Pro
📈 A .NET/C# implementation of the Coinbase Pro API.
Stars: ✭ 63 (+85.29%)
Mutual labels:  gdax, coinbase-pro, coinbasepro, coinbasepro-api
coinbasepro
A Python API for Coinbase Pro
Stars: ✭ 52 (+52.94%)
Mutual labels:  coinbase-pro, coinbasepro, coinbasepro-api
Pi-Trader
A cryptocurrency day-trading bot for Raspberry Pi.
Stars: ✭ 44 (+29.41%)
Mutual labels:  coinbase-pro, coinbasepro-api
Crypto Signal
Github.com/CryptoSignal - #1 Quant Trading & Technical Analysis Bot - 3,100+ stars, 900+ forks
Stars: ✭ 3,690 (+10752.94%)
Mutual labels:  gdax, coinbase-pro
Coinbasepro Csharp
The unofficial .NET/C# client library for the Coinbase Pro/GDAX API
Stars: ✭ 143 (+320.59%)
Mutual labels:  wrapper, gdax
Nescience-Indexing-CLI
Nescience Software & Capital Rebalancing Tool
Stars: ✭ 26 (-23.53%)
Mutual labels:  gdax, coinbasepro
Stocklook
crypto currency library for trading & market making bots, account management, and data analysis
Stars: ✭ 119 (+250%)
Mutual labels:  wrapper, gdax
gdax
GDAX PHP API Client Library
Stars: ✭ 15 (-55.88%)
Mutual labels:  gdax, coinbase-pro
BitView
A crypto portfolio written in Flutter. It supports Binance, Bittrex, HitBTC, Coinbase, Coinbase Pro and Mercatox
Stars: ✭ 50 (+47.06%)
Mutual labels:  coinbasepro, coinbasepro-api
Coinbase-Pro-Crypto-Trading-Bot-CrypFinder
This is a crypto trading bot made in NodeJS that uses the coinbase pro API.
Stars: ✭ 138 (+305.88%)
Mutual labels:  coinbase-pro, coinbasepro-api
Mega-index-heroku
Mega nz heroku index, Serves mega.nz to http via heroku web. It Alters downloading speed and stability
Stars: ✭ 165 (+385.29%)
Mutual labels:  wrapper
node-api
A JavaScript API Wrapper for NovelCOVID/API
Stars: ✭ 63 (+85.29%)
Mutual labels:  wrapper
frontegg-react
Frontegg-React is pre-built Component for faster and simpler integration with Frontegg services.
Stars: ✭ 15 (-55.88%)
Mutual labels:  mit-license
WaxSealCore
Simple, expressive yet comprehensive keychain wrapper in Objective-C.
Stars: ✭ 33 (-2.94%)
Mutual labels:  wrapper
fireREST
Python library for interacting with Cisco Firepower Management Center REST API
Stars: ✭ 47 (+38.24%)
Mutual labels:  wrapper
lorem
Generate Lorem Ipsum Text
Stars: ✭ 18 (-47.06%)
Mutual labels:  rstudio
slf4j-handroid
Android logging done right
Stars: ✭ 17 (-50%)
Mutual labels:  mit-license
learning R
List of resources for learning R
Stars: ✭ 32 (-5.88%)
Mutual labels:  rstudio
PsWebServer
Civet web server integration plugin for Unreal Engine 4
Stars: ✭ 24 (-29.41%)
Mutual labels:  mit-license
rworkshops
Materials for R Workshops
Stars: ✭ 43 (+26.47%)
Mutual labels:  rstudio

rgdax 1.2.3

Build Status CRAN_Status_Badge

Note:

The version less than 1.1.0 are now broken and unsupported. Coinbase had support for the old GDAX API's only till the end of 2018. Version 1.1 and above WILL break the previous implementations and hence, it is recommended that all users should test this extensively with their existing applications (bulit pre-March 2021) and make changes as necessary.

This package is inspired by official and unofficial wrappers for Coinbase Pro 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 Coinbase Pro api keys. The behavior of the functions will also depend upon what kind of access (view, transfer or trade) the api keys have.

What is New in this version

News

Supported Functions

Complete List of Supported Public Functions with Coinbase Pro end point mapping:

# function public mapping
01 candles historic rates
02 daystats 24hr stats
03 info currencies & products
04 orderbook product orderbook
05 ticker product ticker
06 time time
07 trades trades

Complete List of Supported Auth Functions with Coinbase Pro end point mapping:

Accounts

# function auth mapping
08 accounts list accounts
09 account an account
10 account_hist account history
11 holds holds

Orders

# function auth mapping
12 add_order place a new order
13 cancel_order cancel an order & cancel all
14 list_orders list order
XX PENDING get an order

Others

# function auth mapping
15 fills list fills
16 pymt_methods list payment 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

Currently Unsupported Functions - AUTH

# function auth mapping
XX pending exchange limits
XX pending list deposits
XX pending single deposit
XX pending deposut to payment method
XX pending deposit from coinbase
XX pending generate deposit address
XX pending list withdrawl
XX pending single withdrawl
XX pending cancelled withdrawl
XX pending withdraw to payment method
XX pending withdraw to coinbase
XX pending withdraw to address
XX pending withdrawal fee
XX pending create conversion
XX pending list payment methods
XX pending list coinbase accounts
XX pending current fee
XX pending create a new report
XX pending report status
XX pending list profiles
XX pending get a profile
XX pending transfer funds across profiles

Currently Unsupported Functions - PUBLIC

# function mapping
XX pending get a single product

Apart from the above listed pending functions, the current version does not support the following capabilities:

  1. Pagination

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")

URLs

rgdax CRAN

CRAN codebase

DEV codebase

License:

MIT

DISCLAIMER Use at your own risk.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].