geopan / bittrex-bot

A bot designed for trading on bittrex
11 stars 4 forks source link
bittrex bot cryptocurrency node

bittrex-bot

Build Status Coverage Status Codacy Badge

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.

(async () => {
  const balance = await bot.getBalance("btc");
  console.log(balance);
})();