Last active
April 21, 2017 09:47
-
-
Save chenosaurus/5102546 to your computer and use it in GitHub Desktop.
script to buy bitcoin on coinbase
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//you will need to install node.js and restler first | |
//npm install restler | |
//run with the following command | |
// node buy.js | |
var sys = require('util'), | |
rest = require('restler'); | |
//set these to your coinbase API key & the amount you want to buy | |
var apiKey = 'api_key'; | |
var quantity = 10; | |
var jsonData = { qty: quantity }; | |
function onComplete(data, res) { | |
console.log(new Date().toString()); | |
if (!data.success) { | |
console.log( data.errors); | |
setTimeout(buy, 5000); | |
} else { | |
console.log("SUCCESS!"); | |
} | |
}; | |
function buy() { | |
rest.postJson('https://coinbase.com/api/v1/buys?api_key=' + apiKey, jsonData).on('complete', onComplete); | |
} | |
buy(); |
Not broken per se; you probably ran into that "check this box to buy BTC at a future market price since the 24-hour rolling limit has been hit" situation.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so glad this was broken. -$110 drop today. rofl