All Projects â†’ youfoundron â†’ React Trading Ui

youfoundron / React Trading Ui

Component library for trading applications 😰📉💸

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Trading Ui

Marketstore
DataFrame Server for Financial Timeseries Data
Stars: ✭ 1,290 (+677.11%)
Mutual labels:  trading, gdax
Geotic
Entity Component System library for javascript
Stars: ✭ 97 (-41.57%)
Mutual labels:  library, component
Ccxt.net
CCXT.NET – CryptoCurrency eXchange Trading Library for .NET
Stars: ✭ 89 (-46.39%)
Mutual labels:  trading, library
Gdax Orderbook Ml
Application of machine learning to the Coinbase (GDAX) orderbook
Stars: ✭ 60 (-63.86%)
Mutual labels:  trading, gdax
Stocklook
crypto currency library for trading & market making bots, account management, and data analysis
Stars: ✭ 119 (-28.31%)
Mutual labels:  trading, gdax
React Native X Bar
🎩 A flexible, lightweight bar component for common UI patterns in React Native
Stars: ✭ 68 (-59.04%)
Mutual labels:  library, component
React Markdown
Markdown editor (input) based on React
Stars: ✭ 98 (-40.96%)
Mutual labels:  library, component
Egjs
Javascript components group that brings easiest and fastest way to build a web application in your way.
Stars: ✭ 871 (+424.7%)
Mutual labels:  library, component
Aura.ui
A Library with a lot of Controls for AvaloniaUI
Stars: ✭ 114 (-31.33%)
Mutual labels:  library, component
Styled Typography
Typograpy components for react and styled-components
Stars: ✭ 113 (-31.93%)
Mutual labels:  library, component
Faboptions
A multi-functional FAB component with customizable options
Stars: ✭ 1,060 (+538.55%)
Mutual labels:  library, component
Coinbasepro Csharp
The unofficial .NET/C# client library for the Coinbase Pro/GDAX API
Stars: ✭ 143 (-13.86%)
Mutual labels:  gdax, library
Pannellum React
React Component for Pannellum (open source panorama viewer for the web)
Stars: ✭ 48 (-71.08%)
Mutual labels:  library, component
Wymaterialbutton
Interactive and fully animated Material Design button for iOS developers.
Stars: ✭ 80 (-51.81%)
Mutual labels:  library, component
Hellobooks
A Single-Page Library Management App built with nodejs, express and react and redux
Stars: ✭ 37 (-77.71%)
Mutual labels:  library, component
Ngx Select Dropdown
Custom Dropdown for Angular 4+ with multiple and single selection options
Stars: ✭ 91 (-45.18%)
Mutual labels:  library, component
Coinbase Pro Node
DEPRECATED — The official Node.js library for Coinbase Pro
Stars: ✭ 782 (+371.08%)
Mutual labels:  trading, gdax
Coinbase Pro Trading Toolkit
DEPRECATED — The Coinbase Pro trading toolkit
Stars: ✭ 817 (+392.17%)
Mutual labels:  trading, gdax
Maz Ui
Stand-alone components library to build your interfaces with Vue.JS & Nuxt.JS
Stars: ✭ 109 (-34.34%)
Mutual labels:  library, component
Jhtalib
Technical Analysis Library Time-Series
Stars: ✭ 131 (-21.08%)
Mutual labels:  trading, library

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

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].