Skip to content

jayantsolanki/Cryptocurrency-Trading-Visualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Cryptocurrency-Trading-Visualizer

Introduction


In this project we will be connecting to two Websocket channels via their APIs: one from Bitfinex and one from Coinbase. These channels relay information about those companies’ Order Books. We will be subscribing to all the avaialable number of pairs(BTCUSD, BTCEUR, etc.). Upon connection, they each send a snapshot of their respective order books and then send any subsequent updates. This project is a full-fledged application, with a back-end, a front-end, and a database that will both store and relay this data/updates.

Features


This project has following features:

  • Back-End using Tornado Framework

    • Multi-threaded Websocket connections to both exchanges’ order books.
    • Provision to create a new consolidated order book that contains information from both exchanges, which is aggregated from the snapshots that come from the Bitfinex/Gdax Websocket APIs as well as the updates they each emit.
      • Upon receiving the snapshot, application parses the data (i.e. find whether the transaction is a bid or ask, find the price, find the count, and find the amount of the transaction, and store it into a MySQL database using SQLAlchemy). Data model has columns for the transaction type (bid or ask), the price, the count (size), the exchange (Bitfinex or Gdax), and the pairname (“USDEUR”, etc.)
      • Same above parsing are done for each update that is emitted by the 2 APIs. SQLAlchemy is used for creating and updating the models.
    • Websocket Server API that returns the consolidated order book to the subscribed users
      • The user receives the order book on connection.
      • The Websocket server emits any updates that occur to order book (these updates are to be used in the front-end for real-time functionality)
    • A REST endpoint which will return a snapshot of your order book, with the ability to take query parameters for filtering the order book
      • price_greater_than – Return orders where the price is greater than the number specified.
      • exchange – Return orders only from a certain exchange (i.e. exchange=bitfinex).
      • pair – Return orders for the pair specified (i.e. pair=BTCUSD).
  • Front-End

    • A small Angular 4 app that connects to the back-end.
    • The app displays the order book that is stored in the data model and update the view in real-time with any updates that come from your Websocket connection.
    • App includes a form (Reactive Form) for filtering the snapshot of the order book (using the parameters defined in the back-end section).

Documentation


Readme and SQL Model can be found on this Documentation

Folder Tree


  • docs contains documentation and paper
  • code contains codes for Backend and Frontend
    • Cryptocurrency-Trading-Visualizer-Front-end: Contains the Website
    • PythonWebSocServer: Provide REST APIs solution for running WebSocket server and rest of the backend features

Contributors


Tech-stack

  • Backend
    • Python 3.6
    • Tornado for Rest APIs
    • SQLAlchemy
    • Python WebSocket
    • MySQL
  • Frontend
    • Angular 4
    • HTML5/CSS
    • WebSocket

Acknowledgement


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages