bittrex-bot
v1.0.1
Published
A bot to trade on bittrex
Downloads
3
Readme
bittrex-bot
A bot class designed for trading on bittrex exchange.
Installation
npm i bittrex-bot
Bot class
const { Bot } = require("bittrex-bot");
const bot = new Bot({
apikey: process.env.API_KEY,
apisecret: process.env.API_SECRET
});
Overview
Each method return a promise
.
- params: coin
- return: object
(async () => {
const balance = await bot.getBalance("btc");
console.log(balance);
})();