BOT Market Maker - NodeJS (Typescript).
BITMEX - FULL WEBSOCKET
BINANCE - FULL REST
- Simple framework for implementing new exchanges
- Suports ccxt framework.
- Very fast.
- Monthly income above 10%
To purchase the complete bot with code contact us.
BINANCE SAMPLE
{
"exchange": "BINANCE",
"test": false,
"strategy": "MARKETMAKER",
"market": "BTCUSDT",
"currency": "USDT",
"priceStep": 100,
"totalStep": 10,
"orderSizeBuy": 0.0004,
"orderSizeSell": 0.0004,
"trackPrice": 20,
"spread": 5,
"profit": 10,
"intervalPositionInfo": 1000,
"intervalReloadBalance": 1000,
"intervalReloadPosition": 1000,
"intervalReloadMidPrice": 1000,
"intervalReloadOrder": 1000,
"intervalBookEmptyLimiter": 10000,
"intervalOnHoldPositionLimiter": 10000,
"intervalPositionCloseLimiter": 10000,
"intervalPositionCheckerLimiter": 5000,
"credentialRotate": true,
"balanceDispatcherEvents": true,
"quoteDispatcherEvents": true,
"orderDispatcherEvents": true,
"positionDispatcherEvents": true,
"credentials": [
{
"key": "",
"secret": ""
}
]
}
BITMEX SAMPLE
{
"exchange": "BITMEX",
"test": true,
"strategy": "MARKETMAKER",
"market": "XBTUSD",
"currency": "XBt",
"priceStep": 30,
"totalStep": 10,
"orderSizeBuy": 0.002,
"orderSizeSell": 0.002,
"spread": 5,
"profit": 7,
"intervalPositionInfo": 1000,
"credentialRotate": true,
"credentials": [
{
"key": "",
"secret": ""
}
]
}