This is an automatic trading bot using Triangular or Exchange Arbitrages. It reguarly checks and detects arbitrage opportunities, and place orders when a profit can be made. This works on any cryptocurrency pairs with minor configuration.
Started with $1000 in October 2017, there were some times that this made about $40/day for a few weeks with Triangular Arbitrage on Bittrex, but as the market is getting very unstable, the profit is hard to outrun the high price fluctuation.
Bittrex, Bitfinex, Bitstamp, Kraken, Gatecoin (Not maintained anymore due to its extremely low volume)
- Install Python 2 at here https://www.python.org/downloads/ if necessary. This bot will not work with Python 3.
pip install grequests
- Rename or copy
.key_sample
files underkeys
to.key
file, and add the APIs. E.g. Create a filebittrex.key
. Make sure not to push any API keys or this.key
file. - Modify
arbitrage_config.json
for any other ticker pairs or exchanges
Triangular: python main.py -m triangular
Exchange: python main.py -m exchange
Mock mode is enabled by default, which does not place any order and just check and show any arbitrage opportunities. To turn off mock mode and run in production, add the argument -p
.
- The trading fee is the largest obstacle. Most of the exchanges have a 0.25% fee. The profit will be larger if the fee can be lower.
- Sometimes not all the placed orders are executed, so there will be some manual work to rebalance. The bot should be able to deal with this situation, such as placing a market order, instead of just cancelling the open orders.
- Refactoring to python3
- Use proper async code with python3 (aiohttp)
- Use Decimal class instead of float for calculations
- Implement "Coinbase Pro" exchange since it is the one I'm using
- Handle open orders strategically?
- Implement exchange rebalancing?