All Projects → Tucsky → SignificantTrades

Tucsky / SignificantTrades

Licence: GPL-3.0 license
better than 1 min chart

Projects that are alternatives of or similar to SignificantTrades

Particle Cli
Command Line Interface for Particle Cloud and devices
Stars: ✭ 208 (-66.88%)
Mutual labels:  tracker
BetterTrackPlug
Playtime tracker plugin for PS Vita.
Stars: ✭ 44 (-92.99%)
Mutual labels:  tracker
Flutter-Display-Tracker-
Flutter and Firebase based opensource Realtime Tracking App.
Stars: ✭ 15 (-97.61%)
Mutual labels:  tracker
Lil Brother
Track clicks and other client-side events on web pages
Stars: ✭ 219 (-65.13%)
Mutual labels:  tracker
Bambootracker
YM2608 music tracker 🎍🎋
Stars: ✭ 245 (-60.99%)
Mutual labels:  tracker
meteor-computed-field
Reactively computed field for Meteor
Stars: ✭ 18 (-97.13%)
Mutual labels:  tracker
0cc Famitracker
Extension of jsr's FamiTracker
Stars: ✭ 202 (-67.83%)
Mutual labels:  tracker
time
React UI for Wobbly Time Tracker for the Teams
Stars: ✭ 24 (-96.18%)
Mutual labels:  tracker
Marabu
Music Synthetiser
Stars: ✭ 440 (-29.94%)
Mutual labels:  tracker
cli-cube-timer
Time your solves, without leaving the terminal
Stars: ✭ 19 (-96.97%)
Mutual labels:  tracker
Openseeface
Robust realtime face and facial landmark tracking on CPU with Unity integration
Stars: ✭ 216 (-65.61%)
Mutual labels:  tracker
Bforartists
Bforartists is a fork of the popular 3D software Blender, with the goal to improve the UI.
Stars: ✭ 240 (-61.78%)
Mutual labels:  tracker
sonant-x-live
Tracker web application to compose music in a brower
Stars: ✭ 82 (-86.94%)
Mutual labels:  tracker
Keen Tracking.js
A light, fast and flexible javascript tracking library
Stars: ✭ 218 (-65.29%)
Mutual labels:  tracker
torrent-indexer
Yet another node.js torrent scraper made especially for movie, series, anime and music (scrape from 1337x, eztv, limetorrents, rarbg, skytorrents, thepiratebay, torrentproject, yts and zooqle)
Stars: ✭ 50 (-92.04%)
Mutual labels:  tracker
Dijo
scriptable, curses-based, digital habit tracker
Stars: ✭ 2,413 (+284.24%)
Mutual labels:  tracker
dbot
Depth-Based Bayesian Object Tracking Library
Stars: ✭ 62 (-90.13%)
Mutual labels:  tracker
adamant-tradebot
Free market-making software for cryptocurrency projects and exchanges. Makes trade volume, maintains spread and liquidity/depth, set price range, and builds live-like dynamic order book.
Stars: ✭ 113 (-82.01%)
Mutual labels:  trades
moodtracker
A serverless and offline-first PWA that lets you track your mood
Stars: ✭ 34 (-94.59%)
Mutual labels:  tracker
SpooferBT
Relay torrent tracker communication via TCP to bypass a blocked UDP network.
Stars: ✭ 18 (-97.13%)
Mutual labels:  tracker

⚠️ The project moved to https://github.com/Tucsky/aggr !

Demo app at http://tucsky.github.io/aggr 🚀

SignificantTrades Build Status

Live cryptocurrency trades visualizer.
Currently supporting BitMEX, Bitfinex, Binance & Binance Futures, Gdax, Bitstamp, Deribit, Huobi, Okex, Hitbtc, Poloniex, Bybit and FTX (see src/exchanges/ for detail)

screenshot

What it do

This tool shows markets orders filling limit orders LIVE on the crypto markets.

  • Show LIVE trades from exchanges on a specific pair (default BTCUSD)
  • Filter noise by aggregating trades with the same timestamp (timeout based aggregation)
  • Chart averaged price, buy & sell volume, price sma, volume ema (lightweight-chart was used)
  • Play audio when trade show up based on volume
  • Scroll through historical data (when available)

Checkout CHANGELOG.md for details about the recent updates.

How it works

The app is written in Vue.js, use the javascript WebSocket interface to connect to the exchanges API and listen to the trades events. The raw trades are then dispatched to the chart component, while it aggregate trades for the list component. Periodically a summary of market activity (volume, counts and liquidations) is sent to the stats & counters components.

How to install & run locally

  1. Clone the repo
git clone https://github.com/Tucsky/SignificantTrades
  1. Install dependencies
npm install
  1. Run dev mode

Dev mode is

npm run serve

This will automatically open a browser window at localhost:8080

Otherwise can build the application

npm run build

and access the dist/index.html directly in the browser later without having to run a command

...

  1. Profit !

Configuration

SignificantTrades is now using Vue Cli which allows you to configure the client using .env file. Create a .env.local or .env.development or .env.production file inside / folder.

key description example value
PROXY_URL what proxy url to use when fetching data from exchange's REST APIs http://localhost:8080/
API_URL define main historical endpoint http://192.168.0.50:3000/{pair}/historical/{from}/{to}/{timeframe}
API_SUPPORTED_PAIRS define when app should be trying to fetch historical data depending on selected pair BTCUSD, ETHUSD

Implement historical data

You can use this project without historical data just by opening the app in your browser, as getting trades from exchanges is made directly in the browser using websocket api.

However, in order to show historical data you will need to setup your own server that will collect and distribute data on demand.

The current code for the server part is located in the feature/server branch. Let's say you have a server instance running on port 3000, start the client with an environment variable API_URL=http://localhost:3000/{pair}/historical/{from}/{to}/{timeframe} npm run serve.

Donate

BTC 3PK1bBK8sG3zAjPBPD7g3PL14Ndux3zWEz XMR 48NJj3RJDo33zMLaudQDdM8G6MfPrQbpeZU2YnRN2Ep6hbKyYRrS2ZSdiAKpkUXBcjD2pKiPqXtQmSZjZM7fC6YT6CMmoX6

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].