geopan / bittrex-bot

A bot designed for trading on bittrex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

  • params: coin
  • return: object
(async () => {
  const balance = await bot.getBalance("btc");
  console.log(balance);
})();

About

A bot designed for trading on bittrex


Languages

Language:JavaScript 100.0%