UNPKG

bluebot

Version:

A bitcoin trading bot for auto trading at various exchanges

11 lines (10 loc) 258 B
export const draw = function(message) { d3.select("#chart").append("text") .attr('class', 'message') .attr('x', 150) .attr('y', 150) .text(message); } export const clear = function() { d3.select("#chart").find('text').remove(); }