binance-triangle-arbitrage
binance-triangle-arbitrage copied to clipboard
BlackList Crypts
Hey Good afternoon ,
Is there a possibility to remove ETH from trades? Any place where blacklist crypts are placed?
Thanks
There is currently only a whitelist, but a blacklist is possible as a feature request
Is there an ETA on this?
I'm not actively working on anything for this project anymore. It would make sense to implement such a thing when initially creating trades and only pass in tokens that are not on a blacklist
Hello, make this little changes for blacklist;
In config.json file
"SCANNING": { "DEPTH": 50, "WHITELIST": [] },
changed to
"SCANNING": { "DEPTH": 50, "WHITELIST": [], "BLACKLIST": ["BUST", "ETH"] },
In MarketCache.js file line 100 add;
if (CONFIG.SCANNING.BLACKLIST.length > 0) {
if (CONFIG.SCANNING.BLACKLIST.includes(a)) return;
if (CONFIG.SCANNING.BLACKLIST.includes(b)) return;
if (CONFIG.SCANNING.BLACKLIST.includes(c)) return;
}