Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

youfoundron/react-trading-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

React Trading UI

A component library for trading applications.

react-trading-ui

Disclaimer:

There are some real performance issues with this right now and it is likely going to freeze up if you are trying to maintain a full order book in real-time.
For level books or for just polling a full order book it should be more stable.

Documentation

Demo & Examples

Live demo: coming soon...

To run the example locally, clone this repo and run:

$ npm install
$ npm run start

Then visit localhost:3000 in your browser.

Installation

Using npm:
$ npm install --save react-trading-ui

Using yarn
$ yarn add react-trading-ui

Usage

import {OrderBook, TradeHistory} from 'react-trading-ui'
import {connect} from 'react-redux'

const MyApp = ({book, trades}) => (
  <div className='my-app'>
    <OrderBook asks={book.asks} bids={book.bids} />
    <TradeHistory trades={trades} />
  </div>
)

export default connect(
  state => ({
    book: state.book,
    trades: state.trades
  })
)(MyApp)

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -m 'add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request!

Acknowledgements

About

Component library for trading applications ๐Ÿ˜ฐ๐Ÿ“‰๐Ÿ’ธ

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published