Skip to main content

Introduction

Trading React is a trading crypto platform build on 3 principles :

  • 🚀 Fast reaction & execution : orders are executed only via hotkeys.

  • 💰 Forced money management : you can't enter position size yourself.

  • 🎯 Minimalist visualizations : naked charts to focus on price action.

info

On this early build, only Binance USDⓈ-M Futures is available. It allows you to trade more than 100 coins with great liquidities. More exchanges will be added later.

caution

Trading React is in BETA. We strongly advise you to put a very small amount of money on your first try. If you spot any bug or want to suggest any improvement, come share it on the Discord.

Why use Trading React?​

TradingReact was created with a few assumptions you need to agree with:

  • Execution and timing are more important than prediction. We don't believe Technical Analysis is that important to profitable trading ! Beeing able to enter and leave faster with hotkeys add a significant advantage over a trader who uses traditional inputs (button and text).

  • Rigor in money management is essential for long-term gain. With a traditional interface, you have to specify your position size between each trade. It's a possibility that often leads to catastrophic losses because it varies with your emotions and your tiredness through your trading sessions. We solved this issue by not allowing a trader to enter a position size directly.

  • One symbol per page is not enough for crypto trading. We divided the page with a grid that contain as many charts you want to trade simultaneously. We find this presentation much more suitable to track opportunities on a crypto market.

Secure by design​

The way Trading React works give you flawless security.

Your key is stored locally by the Local Storage API and does not circulate outside your computer. It uses your API KEY to forge requests directly from your interface to your exchange, without any third party. forged orders use a private key / public signature system with a strong encryption algorithm (SHA256) which can only be used over a given window of time and have only one purpose. This way of working ensures that:

  • no order or action on your side may be deflected from your wishes.
  • your key will never be sent outside of the application.

The vast majority of interfaces do not have such a level of security, because they store your private keys outside the application on a database.