{% extends 'base.html' %} {% block title %}Ticker{% endblock %} {% block scripts %} var socket = io.connect('{{server_api_base_url}}'); socket.on('general', function(json) { $("#active_users").html(json['/']); }); {% endblock %} {% block body %}

XTCryptoSignals v{{version}}

Clone Bitbucket Project Install from Pypi
Ticker with Data collection, Signals Service and Automatic Trading
RESTFul Server API
Website
Ticker with all configured coins/tokens:
{{frequencies[0][:-1]}} seconds Ticker

Ticker with 3 random configured coins/tokens per Exchange:
{% for data in symbols_per_exchange %} {% for exchange, items in data.items() %}
{{exchange}}:
{% for item in items %} {{item}} {{frequencies[0][:-1]}} seconds {% endfor %} {% endfor %} {% endfor %}

Pooling frequency: {{frequencies|join(", ")}}
Active users: -
{% endblock %}