Skip to content

Commit

Permalink
Update minimal Order values Binance
Browse files Browse the repository at this point in the history
in Binance the minimal Order size for USDT is 10 not 1 (anymore) and for the others it is 0.01, 0.001 and 1
  • Loading branch information
DerBeweis authored and askmike committed Feb 24, 2018
1 parent f9a43dc commit 38f555a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions util/genMarketFiles/update-binance.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ const request = require('request-promise');
const Promise = require('bluebird');

let getOrderMinSize = currency => {
if (currency === 'BTC') return 0.002;
else if (currency === 'ETH') return 0.02;
if (currency === 'BTC') return 0.001;
else if (currency === 'ETH') return 0.01;
else if (currency === 'USDT') return 10;
else return 1;
};

Expand Down

0 comments on commit 38f555a

Please sign in to comment.