Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Ccxt | 29,753 | 220 | 74 | 10 hours ago | 14,316 | December 03, 2023 | 1,069 | mit | Python | |
A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges | ||||||||||
Krypto Trading Bot | 2,851 | a year ago | 68 | other | C++ | |||||
Self-hosted crypto trading bot (automated high frequency market making) written in C++ | ||||||||||
Crypto Trading Bot | 2,688 | 10 months ago | 111 | mit | JavaScript | |||||
Cryptocurrency trading bot in javascript for Bitfinex, Bitmex, Binance, Bybit ... (public edition) | ||||||||||
Goex | 1,685 | 8 | 12 days ago | 37 | December 12, 2022 | 1 | mit | Go | ||
Cryptocurrency Exchange Rest API SDK For Golang Wrapper Support okx,huobi,binance | ||||||||||
Binance Rs | 523 | 1 | 3 days ago | 64 | January 01, 2023 | 34 | other | Rust | ||
Rust Library for the Binance API | ||||||||||
Hummingbot_chinese | 308 | 2 years ago | ||||||||
hummingbot中文资源 | ||||||||||
Indicators | 277 | 7 | 2 months ago | 51 | May 13, 2023 | 5 | TypeScript | |||
Technical indicators for cryptocurrencies, stocks and forex. To work with historical and real price data. One of the most efficient Javascript library implementations. The library has such indicators as: Relative Strength Index (RSI), Moving Average C / D (MACD), Average Directional Index (ADX), Stochastic Oscillator, Bollinger Bands, Average True Range (ATR) and many others | ||||||||||
Trading Indicator | 203 | 1 | 5 months ago | 17 | July 03, 2023 | 6 | JavaScript | |||
provide trading technical indicator values based on data of almost crypto currency exchanges | ||||||||||
Orko | 176 | 9 months ago | 157 | agpl-3.0 | JavaScript | |||||
Trade on and script multiple crypto exchanges from a single user interface on desktop and mobile. In development. | ||||||||||
My Token | 176 | 2 | a year ago | 10 | December 15, 2021 | 7 | mit | Go | ||
📈Track token prices in your terminal |
A work in progress Cryptocurrency for common exchanges like Bitfinex, Bitmex and Binance. As most trading bots just provide basic buy and sell signals they provide many stuff to get profitable eg exchange orders like stop-losses or stop-limits are not supported by main bots. Also the limitation of fixed timeframe and technical indicators must be broken
Not production ready only basic functionality
TODOS:
The tulip library is used for indicators; which sometimes is having some issues on npm install
because of code compiling:
Install build tools
sudo apt-get install build-essential
The nodejs wrapper for tulipindicators is called Tulip Node (tuind), check out installation instructions there.
Also the build from source is not supporting all nodejs version. It looks like versions <= 10 are working. You can use nodejs 12 if you compiled it once via older version.
➜ npm install --production
➜ npm run postinstall
Create instance file for pairs and changes
cp instance.js.dist instance.js
Provide a configuration with your exchange credentials
cp conf.json.dist conf.json
Create a new sqlite database use bot.sql scheme to create the tables
sqlite3 bot.db < bot.sql
Lets start it
npm start
For initialize the configuration once
➜ cp instance.js.dist instance.js && cp conf.json.dist conf.json && sqlite3 bot.db < bot.sql
➜ docker-compose build
➜ docker-compose up -d
After this you can use docker-compose
which will give you a running bot via http://127.0.0.1:8080
First, you'll need to create a bot for Telegram. Just talk to BotFather and follow simple steps until it gives you a token for it. You'll also need to create a Telegram group, the place where you and crypto-trading-bot will communicate. After creating it, add the bot as administrator (make sure to uncheck "All Members Are Admins").
Invite @RawDataBot
to your group and get your group id in sended chat id field
Message
├ message_id: 338
├ from
┊ ├ id: *****
┊ ├ is_bot: false
┊ ├ first_name: 사이드
┊ ├ username: ******
┊ └ language_code: en
├ chat
┊ ├ id: -1001118554477
┊ ├ title: Test Group
┊ └ type: supergroup
├ date: 1544948900
└ text: A
Look for id: -1001118554477 is your chat id (with the negative sign).
For example setup, check conf.json.dist file
, log.telegram section , set chatId, token, level (default is info). Check more options ivanmarban/winston-telegram
Some browser links
As the webserver provides just basic auth for access you should combine some with eh a https for public server. Here s simple proxy_pass
for nginx.
# /etc/nginx/sites-available/YOURHOST
server {
server_name YOURHOST;
location / {
proxy_pass http://127.0.0.1:8080;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/YOURHOST/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/YOURHOST/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
You should also set the listen ip to a local one
# config.json
webserver.ip: 127.0.0.1
Currently there is a the UI for backtesting
Common strategy with indicators are inside, which most of the time are not profitable. See some more advanced strategy in the list below
Find some example strategies inside src/modules/strategy/strategies
For custom strategies use var/strategies folder.
# simple file structure
var/strategies/your_strategy.js
# or wrap strategy into any sub folder depth
var/strategies/my_strategy/my_strategy.js
var/strategies/subfolder1/our_strategy/our_strategy.js
order_adjust
Keep open orders in bid / ask of the orderbook in first positionstoploss
provide general stoploss order in percent of entry price (Exchange Order)risk_reward_ratio
Creates Risk Reward order for take profit and stoploss (Exchange Order Limit+Stop)stoploss_watch
Close open position if ticker price falls below the percent lose; use this for exchange that dont support stop_loss order liek Binancetrailing_stop
Use native exchange trailing stop; if supported by exchange eg Bitfinex
'watchdogs': [
{
'name': 'stoploss',
'percent': 3,
},
{
'name': 'risk_reward_ratio',
'target_percent': 6,
'stop_percent': 3,
},
{
'name': 'stoploss_watch',
'stop': 1.2,
},
{
'name': 'trailing_stop',
'target_percent': 1.2,
'stop_percent': 0.5
}
],
Per default every strategy is "ticked" every full minute with a ~10sec time window. If you want to tick every 15 minutes or less see possible examples below.
Supported units are "m" (minute) and "s" (seconds)
{
"strategies": [
{
"strategy": "cci",
"interval": "15m"
},
{
"strategy": "cci2",
"interval": "30s"
},
{
"strategy": "cci3",
"interval": "60m"
}
]
}
To allow the bot to trade you need to give some "playing capital". You can allow to by via asset or currency amount, see examples below. You should only provide one of them, first wins.
c.symbols.push({
'symbol': 'BTC-EUR',
'exchange': 'coinbase_pro',
'trade': {
'capital': 0.015, // this will buy 0.015 BTC
'currency_capital': 50, // this will use 50 EUR and buys the equal amount of BTC (example: BTC price 3000 use 50 EUR. will result in 0.016 BTC)
'balance_percent': 75, // this will use 75 % of your exchange margin tradable balance. Currently implemented only on Bitfinex exchange.
},
})
Every strategy stat should be live must be places inside trade
.
{
"trade": {
"strategies": [
{
"strategy": "dip_catcher",
"interval": "15m",
"options": {
"period": "15m"
}
}
]
}
}
Inside logs, visible via browser ui, you can double check the strategies init process after the application started.
[info] Starting strategy intervals
[info] "binance_futures" - "ETHUSDT" - "trade" - init strategy "dip_catcher" (15m) in 11.628 minutes
[info] "binance_futures" - "BTCUSDT" - "trade" first strategy run "dip_catcher" now every 15.00 minutes
An example instance.js
which trades can be found inside instance.js.dist_trade
. Rename it or move the content to you file.
const c = (module.exports = {});
c.symbols = [
{
symbol: 'ETHUSDT',
exchange: 'binance_futures',
periods: ['1m', '15m', '1h'],
trade: {
currency_capital: 10,
strategies: [
{
strategy: 'dip_catcher',
interval: '15m',
options: {
period: '15m'
}
}
]
},
watchdogs: [
{
name: 'risk_reward_ratio',
target_percent: 3.1,
stop_percent: 2.1
}
]
}
];
Per pair you can set used margin before orders are created; depending on exchange
c.symbols.push({
'symbol': 'BTCUSD',
'exchange': 'bitmex',
'extra': {
'bitmex_leverage': 5,
},
})
c.symbols.push({
'symbol': 'EOSUSD',
'exchange': 'bybit',
'extra': {
'bybit_leverage': 5,
},
})
outdated, but there as an automatic filling on startup ~1000 candles from the past (depending on exchange) and continuously fetched when running
node index.js backfill -e bitmex -p 1m -s XRPZ18
npm test
Other bots with possible design pattern
Some strategies based on technical indicators for collection some ideas