binance-triangle-arbitrage icon indicating copy to clipboard operation
binance-triangle-arbitrage copied to clipboard

BlackList Crypts

Open nevesrangel opened this issue 3 years ago • 4 comments

Hey Good afternoon ,

Is there a possibility to remove ETH from trades? Any place where blacklist crypts are placed?

Thanks

nevesrangel avatar May 27 '21 20:05 nevesrangel

There is currently only a whitelist, but a blacklist is possible as a feature request

bmino avatar Jun 01 '21 05:06 bmino

Is there an ETA on this?

tdev00 avatar Aug 16 '21 02:08 tdev00

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

bmino avatar Aug 16 '21 06:08 bmino

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;
    }

alastyrcom avatar Nov 12 '21 11:11 alastyrcom