{"id":28966110,"url":"https://github.com/andrei-zgirvaci/arbitrage-bot","last_synced_at":"2025-06-24T07:10:58.248Z","repository":{"id":44351519,"uuid":"150017938","full_name":"andrei-zgirvaci/Arbitrage-Bot","owner":"andrei-zgirvaci","description":"A bot that makes profit of the best crypto Arbitrage opportunities on the market","archived":false,"fork":false,"pushed_at":"2023-07-22T09:08:14.000Z","size":3,"stargazers_count":231,"open_issues_count":7,"forks_count":63,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-05-21T06:13:23.893Z","etag":null,"topics":["arbitrage","arbitrage-bot","arbitrage-opportunity","bot","cryptocurrency","cryptocurrency-exchanges","cryptocurrency-trading-bot"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andrei-zgirvaci.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-23T19:26:06.000Z","updated_at":"2024-05-21T03:49:34.000Z","dependencies_parsed_at":"2022-08-30T00:50:23.963Z","dependency_job_id":null,"html_url":"https://github.com/andrei-zgirvaci/Arbitrage-Bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/andrei-zgirvaci/Arbitrage-Bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrei-zgirvaci%2FArbitrage-Bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrei-zgirvaci%2FArbitrage-Bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrei-zgirvaci%2FArbitrage-Bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrei-zgirvaci%2FArbitrage-Bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andrei-zgirvaci","download_url":"https://codeload.github.com/andrei-zgirvaci/Arbitrage-Bot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andrei-zgirvaci%2FArbitrage-Bot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261624969,"owners_count":23186121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["arbitrage","arbitrage-bot","arbitrage-opportunity","bot","cryptocurrency","cryptocurrency-exchanges","cryptocurrency-trading-bot"],"created_at":"2025-06-24T07:10:54.443Z","updated_at":"2025-06-24T07:10:58.221Z","avatar_url":"https://github.com/andrei-zgirvaci.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Crypto Market - Arbitrage Bot (Arbitrage-Bot)\n\nCryptocurrency is still a new and inefficient market. Several Cryptocurrency exchanges exist around the world and the bid/ask prices they propose can be briefly different from an exchange to another. The purpose of Arbitrage-Bot is to automatically profit from these temporary price differences while being market-neutral.\n\nArbitrage-Bot uses the most popular open-source trading library [ccxt](https://github.com/ccxt/ccxt) in order to find best price spread on the market.\n\nWRITTEN BY: Andrei Zgirvaci\n\nCONTRIBUTE: Contributions are always welcome!\n\n*If you can, please take a minute to star this repo and follow me, It will be much appreciated!!!*\n\n---\n\n## Requirements\n\n* **python** version **3.7.0** installed\n\n## Installation\n\n```bash\ngit clone https://github.com/MD3XTER/Arbitrage-Bot.git\n\ncd Arbitrage-Bot\n\npip install ccxt\n\npython3 arbitrage_bot.py\n```\n\n## Usage\n\nFirst, you need to specify the markets you are going to target. Here is a [list](https://github.com/ccxt/ccxt#supported-cryptocurrency-exchange-markets) of supported markets by the [ccxt](https://github.com/ccxt/ccxt/wiki) library:\n\n```python\nexchanges = [\n    \"binance\",\n    \"bittrex\",\n    \"hitbtc\",\n    \"poloniex\",\n    \"exmo\",\n    \"bitmex\",\n    \"huobi\",\n]\n```\n\nIn order for the bot to be able to fetch market data, it needs an **API Key** and a **Secret Token** for each market you are going to target:\n\n```python\nexchangesData = {\n    \"hitbtc\": {\n        \"apiKey\": \"\",\n        \"secret\": \"\",\n        \"transactionFee\": 0.001\n    },\n    \"binance\": {\n        \"apiKey\": \"\",\n        \"secret\": \"\",\n        \"transactionFee\": 0.001\n    },\n    \"bittrex\": {\n        \"apiKey\": \"\",\n        \"secret\": \"\",\n        \"transactionFee\": 0.0025\n    },\n    \"poloniex\": {\n        \"apiKey\": \"\",\n        \"secret\": \"\",\n        \"transactionFee\": 0.0025\n    },\n    \"exmo\": {\n        \"apiKey\": \"\",\n        \"secret\": \"\",\n        \"transactionFee\": 0.002\n    },\n}\n```\n\nSecondly, you need to specify for which symbols should the bot look, here is a list of the most common ones:\n\n```python\nsymbols = [\n    \"ETH/USDT\",\n    \"XRP/USDT\",\n    \"BTC/USDT\",\n    \"BCH/USDT\",\n    \"DASH/USDT\",\n    \"XMR/USDT\",\n    \"LTC/USDT\",\n]\n```\n\nYou can also specify min spread and min profit that you are interested in:\n\n```python\nmin_spread = 1\nmin_profit = 0\n```\n\n---\n\nTake in mind that there are two ways to create buy orders: [create_market_buy_order](https://github.com/ccxt/ccxt/wiki/Manual#market-orders) and [create_limit_buy_order](https://github.com/ccxt/ccxt/wiki/Manual#limit-orders). You should decide for yourself what method fits you better.\n\nFor more information on how each method works, take a look at the official [ccxt](https://github.com/ccxt/ccxt/wiki) documentation.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrei-zgirvaci%2Farbitrage-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrei-zgirvaci%2Farbitrage-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrei-zgirvaci%2Farbitrage-bot/lists"}