Skip to content

Commit

Permalink
added tier and type of commision for tidex
Browse files Browse the repository at this point in the history
  • Loading branch information
illera88 committed Dec 10, 2017
1 parent 18bf43e commit f25bb73
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion js/binance.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ module.exports = class binance extends Exchange {
],
},
},
'fees': {
'fees': { // https://support.binance.com/hc/en-us/articles/115000583311
'trading': {
'tierBased': false, //false for tier based
'percentage': true,
Expand Down
37 changes: 37 additions & 0 deletions js/tidex.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,43 @@ module.exports = class tidex extends liqui {
'doc': 'https://tidex.com/public-api',
'fees': 'https://tidex.com/pairs-spec'
},
'fees': {
'trading': {
'tierBased': false, //false for tier based
'percentage': true,
'taker': 0.1 / 100,
'maker': 0.1 / 100,
},
'funding': {
'tierBased': false, //true for tier based/progressive
'percentage': false, //fixed commission
'withdraw': {
'BTC': 0.0012,
'ETH': 0.01,
'LTC': 0.001,
'DOGE': 0.01,
'ICN': 2,
'DASH': 0.002,
'GNO': 2,
'EOS': 2,
'BCH': 2,
'USDT': 0,

},
'deposit': {
'BTC': 0,
'ETH': 0,
'LTC': 0,
'DOGE': 0,
'ICN': 0,
'DASH': 0,
'GNO': 0,
'EOS': 0,
'BCH': 0,
'USDT': 0,
},
},
},
});
}
}

0 comments on commit f25bb73

Please sign in to comment.