https://github.com/giansalex/coingecko-notify
Coingecko Price Alert
https://github.com/giansalex/coingecko-notify
coingecko cryptocurrency price-tracker
Last synced: 3 months ago
JSON representation
Coingecko Price Alert
- Host: GitHub
- URL: https://github.com/giansalex/coingecko-notify
- Owner: giansalex
- Created: 2021-08-17T03:04:05.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-17T03:04:16.000Z (about 4 years ago)
- Last Synced: 2025-04-06T23:44:24.139Z (6 months ago)
- Topics: coingecko, cryptocurrency, price-tracker
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coingecko price Alert
## Build
```
go build -o coing .
```## Example
If price is higher than
```bash
./coing -coin=btc -up=60000
```If price is less than
```bash
./coing -coin=btc -down=30000
```**Notify by email**
```bash
./p2pc -coin=btc -up=50000 \
-mail.host=mail.example.com \
-mail.port=587 \
-mail.user=user@example.com \
-mail.pass=xxxx \
-mail.from=noreply@example.com \
-mail.to=me@gmail.com
```