bluebot
Version:
A bitcoin trading bot for auto trading at various exchanges
151 lines (123 loc) • 3.9 kB
JavaScript
var log = require('../core/log');
var moment = require('moment');
var _ = require('lodash');
var config = require('../core/util').getConfig();
var telegrambot = config.telegrambot;
var utc = moment.utc;
var telegram = require("node-telegram-bot-api");
var Actor = function() {
_.bindAll(this);
this.advice = 'Dont got one yet :(';
this.adviceTime = utc();
this.price = 'Dont know yet :(';
this.priceTime = utc();
this.commands = {
'advice': 'emitAdvice',
'price': 'emitPrice',
'donate': 'emitDonation',
'real advice': 'emitRealAdvice',
'help': 'emitHelp'
};
this.rawCommands = _.keys(this.commands);
this.chatId = null;
this.bot = new telegram(telegrambot.token, { polling: true });
this.bot.onText(/(.+)/, this.verifyQuestion);
}
Actor.prototype.processCandle = function(candle, done) {
this.price = candle.close;
this.priceTime = candle.start;
done();
};
Actor.prototype.processAdvice = function(advice) {
if (telegrambot.muteSoft && advice.recommendation === 'soft') return;
this.advice = advice.recommendation;
this.adviceTime = utc();
if (telegrambot.emitUpdates)
this.newAdvice();
};
Actor.prototype.verifyQuestion = function(msg, text) {
this.chatId = msg.chat.id;
if (text[1].toLowerCase() in this.commands)
this[this.commands[text[1].toLowerCase()]]();
else
this.bot.sendMessage(this.chatId, "Hello!");
}
Actor.prototype.newAdvice = function() {
if (this.chatId) {
this.bot.sendMessage(this.chatId, 'Important news!');
this.emitAdvice();
}
}
// sent advice to the last chat
Actor.prototype.emitAdvice = function() {
var message = [
'Advice for ',
config.watch.exchange,
' ',
config.watch.currency,
'/',
config.watch.asset,
' using ',
config.tradingAdvisor.method,
' at ',
config.tradingAdvisor.candleSize,
' minute candles, is:\n',
this.advice,
' ',
config.watch.asset,
' (from ',
this.adviceTime.fromNow(),
')'
].join('');
if (this.chatId)
this.bot.sendMessage(this.chatId, message);
};
// sent price over to the last chat
Actor.prototype.emitPrice = function() {
var message = [
'Current price at ',
config.watch.exchange,
' ',
config.watch.currency,
'/',
config.watch.asset,
' is ',
this.price,
' ',
config.watch.currency,
' (from ',
this.priceTime.fromNow(),
')'
].join('');
if (this.chatId)
this.bot.sendMessage(this.chatId, message);
};
Actor.prototype.emitHelp = function() {
var message = _.reduce(
this.rawCommands,
function(message, command) {
return message + ' ' + command + ',';
},
'possible commands are:'
);
message = message.substr(0, _.size(message) - 1) + '.';
if (this.chatId)
this.bot.sendMessage(this.chatId, message);
}
Actor.prototype.emitRealAdvice = function() {
var realAdvice = [
'I don\'t throw darts at a board. I bet on sure things. Read Sun-tzu, The Art of War. Every battle is won before it is ever fought.',
'Ever wonder why fund managers can\'t beat the S&P 500? \'Cause they\'re sheep, and sheep get slaughtered.',
'If you\'re not inside, you\'re outside!',
'The most valuable commodity I know of is information.',
'It\'s not a question of enough, pal. It\'s a zero sum game, somebody wins, somebody loses. Money itself isn\'t lost or made, it\'s simply transferred from one perception to another.',
'What\'s worth doing is worth doing for money. (Wait, wasn\'t I a free and open source bot?)',
'When I get a hold of the son of a bitch who leaked this, I\'m gonna tear his eyeballs out and I\'m gonna suck his fucking skull.'
];
if (this.chatId)
this.bot.sendMessage(this.chatId, _.first(_.shuffle(realAdvice)));
}
Actor.prototype.logError = function(message) {
log.error('Telegram ERROR:', message);
};
module.exports = Actor;