Skip to content

Instantly share code, notes, and snippets.

View DheerajAgarwal's full-sized avatar
👓
Working from home

Dheeraj Agarwal DheerajAgarwal

👓
Working from home
View GitHub Profile
@gsee
gsee / CoinbaseExchangeEnterOrder.R
Last active September 18, 2019 20:30
authenticate and place an order on Coinbase Exchange in R
library(RCurl) # for base64Decode(), base64Encode(), getURLContent(), and getCurlHandle()
library(digest) # for hmac()
library(RJSONIO) # for toJSON() and fromJSON()
api.key <- "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
secret <- "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
passphrase <- "your passphrase"
api.url <- "https://api.gdax.com"
req.url <- "/orders"