bluebot
Version:
A bitcoin trading bot for auto trading at various exchanges
46 lines (34 loc) • 1.46 kB
JavaScript
console.log(`
/***
* */$$$$$$$**/$$*********************/$$$$$$$**************/$$****
* |*$$__**$$|*$$********************|*$$__**$$************|*$$****
* |*$$**\*$$|*$$*/$$***/$$**/$$$$$$*|*$$**\*$$**/$$$$$$**/$$$$$$**
* |*$$$$$$$*|*$$|*$$**|*$$*/$$__**$$|*$$$$$$$**/$$__**$$|_**$$_/**
* |*$$__**$$|*$$|*$$**|*$$|*$$$$$$$$|*$$__**$$|*$$**\*$$**|*$$****
* |*$$**\*$$|*$$|*$$**|*$$|*$$_____/|*$$**\*$$|*$$**|*$$**|*$$*/$$
* |*$$$$$$$/|*$$|**$$$$$$/|**$$$$$$$|*$$$$$$$/|**$$$$$$/**|**$$$$/
* |_______/*|__/*\______/**\_______/|_______/**\______/****\___/**
* ****************************************************************
* ****************************************************************
* ****************************************************************
*/
`);
const util = require(__dirname + '/core/util');
console.log('\tBlueBot v' + util.getVersion());
console.log('\tI\'m gonna make you rich, Sonic.', '\n\n');
const dirs = util.dirs();
if(util.launchUI())
return require(util.dirs().web + 'server');
const pipeline = require(dirs.core + 'pipeline');
const config = util.getConfig();
const mode = util.bluebotMode();
if(
config.trader.enabled &&
!config['I understand that BlueBot only automates MY OWN trading strategies']
)
// > Ever wonder why fund managers can't beat the S&P 500?
// > 'Cause they're sheep, and sheep get slaughtered.
pipeline({
config: config,
mode: mode
});