Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pantunes/exchange-radar
Live trading information from various cryptocurrency exchanges.
https://github.com/pantunes/exchange-radar
aggregator asyncio cryptocurrencies cryptocurrency-exchanges docker docker-compose event-driven microservices pydantic python rabbitmq raspberry-pi-4 realtime-messaging redis redis-om redis-stack restful starlette uvicorn websockets
Last synced: about 1 month ago
JSON representation
Live trading information from various cryptocurrency exchanges.
- Host: GitHub
- URL: https://github.com/pantunes/exchange-radar
- Owner: pantunes
- License: gpl-3.0
- Created: 2023-05-06T21:37:03.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-28T20:04:09.000Z (6 months ago)
- Last Synced: 2024-05-29T11:04:30.367Z (6 months ago)
- Topics: aggregator, asyncio, cryptocurrencies, cryptocurrency-exchanges, docker, docker-compose, event-driven, microservices, pydantic, python, rabbitmq, raspberry-pi-4, realtime-messaging, redis, redis-om, redis-stack, restful, starlette, uvicorn, websockets
- Language: Python
- Homepage: https://exchangeradar.tech
- Size: 684 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# exchange-radar: Real-time Crypto Exchange Trades Monitor
[![Version][version-svg]][package-url]
[![License][license-image]][license-url]
[![Build Status][ci-svg]][ci-url]Welcome to Exchange Radar, your gateway to real-time trade data from major cryptocurrency exchanges.
### Supported Exchanges
Exchange Radar currently supports the following top exchanges by reputation and trading volume:
- Binance
- Coinbase
- Kraken
- KuCoin
- OKX
- Bybit
- Bitstamp
- MEXC
- HTX### Build & Run
Get started effortlessly:#### Locally
# Start all services (all crypto-exchange producers, consumer and web services)
$ docker compose -f local.yml up --build -d# Start crypto-exchange OKX producer, consumer and web services
$ docker compose -f local.yml up --build consumer producer-okx#### Production
# Start all services
$ docker compose -f production.yml up --build -d# Scale the consumer service horizontally with 2 instances
$ docker compose -f production.yml up --build --scale consumer=2### OAS 3
OpenAPI Specification: http://127.0.0.1:9000/api/schema.yaml### Run Test Cases & Code Coverage
#### Tests
$ make tests
#### Code Coverage
$ make coverage
### Run Benchmarks
$ make benchmark
Example of the benchmark output can be seen [here](benchmarks/results.out).
### UI
Explore real-time trade information effortlessly:
- Visit http://127.0.0.1:9000/BTC to access real-time BTC trades.
- To track BTC whales' transactions, navigate to http://127.0.0.1:9000/BTC/whales.
- For BTC dolphins' transactions, use http://127.0.0.1:9000/BTC/dolphins.
- To monitor BTC octopuses' transactions, head to http://127.0.0.1:9000/BTC/octopuses.Feel free to replace BTC with any other supported coin across the exchanges.
### Hardware Requirements
Exchange Radar operates efficiently without requiring extensive resources. In fact, all services run seamlessly on a single Raspberry Pi 4.[version-svg]: https://img.shields.io/pypi/v/exchange-radar?style=flat-square
[package-url]: https://pypi.org/project/exchange-radar/
[ci-svg]: https://github.com/pantunes/exchange-radar/actions/workflows/ci-cd.yml/badge.svg
[ci-url]: https://github.com/pantunes/exchange-radar/actions/workflows/ci-cd.yml
[license-image]: https://shields.io/badge/license-GNU%20General%20Public%20License%20v3.0-green
[license-url]: LICENSE