https://github.com/marfusios/crypto-watcher
Cryptocurrency real-time prices and order book in the console application
https://github.com/marfusios/crypto-watcher
Last synced: 8 months ago
JSON representation
Cryptocurrency real-time prices and order book in the console application
- Host: GitHub
- URL: https://github.com/marfusios/crypto-watcher
- Owner: Marfusios
- License: mit
- Created: 2021-08-09T18:19:27.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T10:11:45.000Z (over 2 years ago)
- Last Synced: 2025-10-14T22:38:02.838Z (8 months ago)
- Language: C#
- Homepage:
- Size: 11.5 MB
- Stars: 15
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Cryptocurrency Watcher
This sample console application presents possibilities of [crypto-websocket-extensions](https://github.com/Marfusios/crypto-websocket-extensions) library.
* displaying real-time price changes (under 1ms)
* displaying L3 order book with reporting about price/amount updates of the individual orders
#### Price changes

#### L3 order book

Once cloned, run the following from a command line to run the app.
``` console
> dotnet restore
> dotnet run
```
You can modify the settings in [appsettings.json](./appsettings.json) to add or remove exchanges and symbols
you'd like to watch.
Also you can change mode between `PriceChanges` and `L3`.
After that, you're off to the moon. 🚀💎🙌
Inspired by: [StonksWatcher](https://github.com/khalidabuhakmeh/StonksWatcher)