Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zizwar/deno-trading-bot
technical strategies and indicators for trading
https://github.com/zizwar/deno-trading-bot
alephjs binance-api crypto cryptocurrency deno denoland docker-compose es2020 esm gitpod-compatible javascript margin-trading raspberry reactjs slack-api telegram-bot-api trading-algorithms trading-api trading-strategies
Last synced: 4 days ago
JSON representation
technical strategies and indicators for trading
- Host: GitHub
- URL: https://github.com/zizwar/deno-trading-bot
- Owner: Zizwar
- License: mit
- Created: 2021-05-30T20:38:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T01:05:27.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T13:21:16.733Z (4 months ago)
- Topics: alephjs, binance-api, crypto, cryptocurrency, deno, denoland, docker-compose, es2020, esm, gitpod-compatible, javascript, margin-trading, raspberry, reactjs, slack-api, telegram-bot-api, trading-algorithms, trading-api, trading-strategies
- Language: JavaScript
- Homepage:
- Size: 740 KB
- Stars: 13
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/Zizwar/deno-trad-bot)
# deno-trade-bot
deno trading bot
v0.1.3-alpha1- https://deno.land/#installation
2- clone:
```sh
git clone https://github.com/Zizwar/deno-trad-bot.git
```3- rename file .env.exemple to .env and set
```sh
TOKEN_TELEGRAM =
ID_TELEGRAM =
TOKEN_SLACK =
SHANEL_SLACK =
API_KEY_BINANCE =
API_SECRET_BINANCE =
INTERVAL_TIME =
```
## test
- in terminal
```sh
$ deno test --allow-net --allow-env --allow-read
```
## run
- in terminal
```sh
$ deno run --allow-net --allow-env --allow-read main.js
```
- in docker
```sh
$ docker build -t app . && docker run -it --init -p 1993:1993 app
```
## exemple```ts
import DenoBot from './wino/denoBot.js';
import { ENV } from './deps.js';
const { INTERVAL_TIME = 1 } = ENV;const denoBot = new DenoBot();
const ping = await denoBot.ping;
denoBot.stratigy = "onlyRsis"
setInterval(async _ => {
const options = {
candeles: { symbol: "DOGEUSDT" }
}
const listenMyCoins = await denoBot.listenCoins(options);
const action = denoBot.action(listenMyCoins);
if (action) {
try {
const {
symbol,
rsi,
stochRSI,
sma,
ema,
upper,
lower,
close,
stratigy
} = listenMyCoins;
const tfx = (val) => parseFloat(val).toFixed(5)
const message = `
${action === "Buy" ? "⤴️" : "⤵️"} action=${action}
symbol=${symbol}
price=${close}
rsi=${rsi}
stochRSI=${tfx(stochRSI)}
sma=${tfx(sma)}
ema=${tfx(ema)}
stratigy=${stratigy}
`;
denoBot.postMessageTelegram(message)
} catch (error) {
console.error(error)
}
}
// denoBot.postMessageSlacK(action)
console.log({ action, ...listenMyCoins })
}, INTERVAL_TIME * 1000)
```
## Screens
Telegram![Console log](https://raw.githubusercontent.com/Zizwar/deno-trading-bot/main/screens/telegram.jpg)
Console
![Console log](https://raw.githubusercontent.com/Zizwar/deno-trading-bot/main/screens/denolog.jpg)notif
![Telegram](https://raw.githubusercontent.com/Zizwar/deno-trading-bot/main/screens/denobottelegram.jpg)
## API (Incoming)
https://brah.im