Skip to content

Server that let you monitor many cryptocurrencies and store the OHLC data in InfluxDB (visualisation with grafana)

License

Notifications You must be signed in to change notification settings

clementpl/influx-crypto-watcher

Repository files navigation

influx crypto watcher Build Status Coverage Status

Crypto market data aggregator

This project is used by influx crypto trader to make a complete system of trading (with backtesting)

Description

This application help gathering data about cryptocurrencies (stock price, signals, tweet) and store those data in InfluxDB

Getting started

Install dependencies

npm install

Run docker containers (influx, mongodb) (Need docker-compose >= 1.27.0 and docker engine >= 19.03.0)

npm run docker-start

Start watcher api

npm start

Create your first watcher (binance, BTC/USDT)

curl --request POST --url http://localhost:3000/watchers --header 'content-type: application/json' --data\
 '{ "type": "MarketWatcher",
    "exchange": "binance",
    "quote": "USDT",
    "base": "BTC",
    "extra": {
      "refreshInterval": 30000,
      "maxHistory": "2018-10-01T00:00:00Z"
      }
    }'

When creating the grafana image everything should be configure for localhost usage (dashboards+datasource). Grafana povisioning help to import directly the different dashboards.

If there is nothing already ready in grafana you can follow the manual configuration: Go to grafana (http://localhost:3001/):

  • Configure data source

datasource

  • import the dashboard given in "docker/grafana/dashboards/cypto-watcher.json"

dashboard

Core

The software let you deploy watcher which will collect data about a specific exchange cryptocurrency.

The principal concept is the watcher. A watcher can track price/signal (TODO => telegram signal part)

A watcher will track a cryptocurrency price given a configuration. For example to watch the price of BTC/USDT on binance we configure a MarketWatcher as:

{
  type: 'MarketWatcher'
  exchange: 'binance';
  base: 'BTC';
  quote: 'USDT';
  extra: {
    refreshInterval: 30000; // refresh every 30 seconds
    maxHistory: "2018-10-01T00:00:00Z"; // onInit will fetch history data
  };
}

Every watcher are persist to MongoDB to restart them on reboot.

API

  • Doc available at http://localhost:3000/docs generated with lout
  • Easy watcher deployment
  • Watch specific currencies
  • TODO Watch signals (telegram, ...?)

Visualization with grafana

A grafana container will run when using npm run docker

Then go to http://localhost:3001/

  • username: admin
  • password: admin

UI

About

Server that let you monitor many cryptocurrencies and store the OHLC data in InfluxDB (visualisation with grafana)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published