https://github.com/erdieee/ceres
Cryptocurrency Arbitrage Bot
https://github.com/erdieee/ceres
arbitrage arbitrage-bot ccxt crypto crypto-arbitrage crypto-trading cryptocurrency hft hft-trading market-maker
Last synced: 5 days ago
JSON representation
Cryptocurrency Arbitrage Bot
- Host: GitHub
- URL: https://github.com/erdieee/ceres
- Owner: erdieee
- License: gpl-3.0
- Created: 2023-04-08T09:29:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T15:38:06.000Z (over 2 years ago)
- Last Synced: 2024-04-13T15:50:38.734Z (over 2 years ago)
- Topics: arbitrage, arbitrage-bot, ccxt, crypto, crypto-arbitrage, crypto-trading, cryptocurrency, hft, hft-trading, market-maker
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 25
- Watchers: 4
- Forks: 11
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ceres Arbitrage Bot
Check orderbooks asynchronously on different exchanges and search for arbitrage opportunities. No trading direction, no gambling, only taking advantage of market inefficiency.
## Installation
```bash
git clone https://github.com/erdieee/ceres.git
# Enter downloaded directory
cd myodds
pip install -r requirements.txt
pip install -e .
```
Check the cli options with
```bash
ceres --help
```
To start the bot run
Check the cli options with
```bash
ceres trade
```
## Configuration
Create a config.json file in the root directory with the following information:
```
{
"dry": true,
"dry_balance": 1000,
"amount": 1000,
"order_size": 0.01,
"symbol": "BTC/USDT",
"exchanges": [
{
"name": "binance",
"key": "",
"secret": ""
},
{
"name": "bybit",
"key": "",
"secret": ""
},
{
"name": "kucoin",
"key": "",
"secret": ""
},
{
"name": "okx",
"key": "",
"secret": ""
}
],
"telegram": {
"enabled": false,
"token": "",
"chat_id": ""
}
}
```