https://github.com/kooparse/hodl-ticker
:money_with_wings: Cryptocurrency prices on CLI
https://github.com/kooparse/hodl-ticker
crypto rust
Last synced: over 1 year ago
JSON representation
:money_with_wings: Cryptocurrency prices on CLI
- Host: GitHub
- URL: https://github.com/kooparse/hodl-ticker
- Owner: kooparse
- License: mit
- Created: 2017-12-09T13:19:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-10-04T17:11:01.000Z (over 5 years ago)
- Last Synced: 2025-03-16T00:17:05.309Z (over 1 year ago)
- Topics: crypto, rust
- Language: Rust
- Homepage:
- Size: 88.9 KB
- Stars: 50
- Watchers: 4
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hodl-ticker
Get cryptocurrency prices from your terminal!
## Screenshot

## Download binary
- `cargo install hodl-ticker`
## Install && Running
- Fork or download this repository.
- `cd` to the project's location
- run `cargo build --release`
- run `./target/release/hodl-ticker -h`
## Options
You can use the `-c` (or `--convert`) with the fiat currency symbol to find in terms of another currency.
The default currency is USD and it supports EUR, GBP and JPY.
```
// Convert prices to Euro
$ hodl-ticker -c eur
// Convert prices to Yenn
$ hodl-ticker -c jpy
```
You can use the `-f` (or `--filter`) to choose which cryptocurrencies to see.
```
$ hodl-ticker -f Bitcoin "Bitcoin Cash"
```
You can use the `-l` (or `--limit`) to limit the number of currencies fetched.
```
$ hodl-ticker -l 20
```
You can use the `-w` (or `--watch`) to trigger the watch mode, data will be fetch every 5 secs.
```
$ hodl-ticker -w
```
You can use the `-h` (or `--help`) to find all valid options of hodl-ticker
This project is using the great [CoinGecko API](https://www.coingecko.com/en/api).