Skip to content

Bot for detecting newly added coins in the binance exchange.

License

Notifications You must be signed in to change notification settings

tipoc123/BinanceListingBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

binance_listing

Bot for detecting new coins in the binance exchange and fast taking profit (buy and then sell more expensive). Also it supports email notification.

You must change next lines in the index.js file:

const APIKEY = '[YOUR APIKEY]';
const APISECRET = '[YOUR APISECRET]';

var transporter = nodemailer.createTransport({
  service: 'gmail',
  auth: {
    user: '[your mail]@gmail.com',
    pass: '[password for email]'
  }
});

var mailOptions = {
  from: '[your mail]@gmail.com',
  to: 'email1, email2',
  subject: 'Binance NEW COIN',
  text: 'Added new coin'
};

Also you may change to suit your needs:

const priceLimit = 0.0001; //in BTC
const deposit = 0.01; //in BTC
...
const sellPrice = price * 1.5;

About

Bot for detecting newly added coins in the binance exchange.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published