https://github.com/artreex/crypto-signals-tg-bot
A bot for Telegram based on a neural network that displays signals for the purchase/sale of cryptocurrency.
https://github.com/artreex/crypto-signals-tg-bot
bot cryptocurrency node signals telegram tensorflow typescript
Last synced: 3 months ago
JSON representation
A bot for Telegram based on a neural network that displays signals for the purchase/sale of cryptocurrency.
- Host: GitHub
- URL: https://github.com/artreex/crypto-signals-tg-bot
- Owner: ArtReeX
- License: mit
- Created: 2019-11-24T22:06:56.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-03T07:47:39.000Z (over 6 years ago)
- Last Synced: 2025-06-29T15:44:13.620Z (about 1 year ago)
- Topics: bot, cryptocurrency, node, signals, telegram, tensorflow, typescript
- Language: TypeScript
- Homepage:
- Size: 20.8 MB
- Stars: 8
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# crypto-signals-tg-bot
A bot for Telegram based on a neural network that displays signals for the purchase/sale of cryptocurrency.
## Options
### tensorflow (after changing this parameter, it is necessary to retrain the network, for this you need to delete the "model" folder and run the application again)
- **seqPast** - interval for forecasting in the candlelight
- **seqFuture** - number of candles for neural network predictions
- **epochs** - number of training iterations
```json
"tensorflow": {
"seqPast": 10,
"seqFuture": 1,
"epochs": 50
},
```
### telegram
- **token** - token bot
- **chat** - chat ID (api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/getUpdates)
```json
"telegram": {
"token": "1017355485:AAH2YMpsw6c-iTZhU8BEAabvduHSpQ2SvXE",
"chat": -1001158670090
},
```
### directions
```json
"directions": ["BTCUSDT", "ETHUSDT", "BCHUSDT", "BNBUSDT"],
"intervals": ["4h"]
},
```