Тайлбар байхгүй

Berke 5aa31fbefe simpler websocket & parser implementation (#9) 1 жил өмнө
.cargo 5aa31fbefe simpler websocket & parser implementation (#9) 1 жил өмнө
src 5aa31fbefe simpler websocket & parser implementation (#9) 1 жил өмнө
.gitignore 5aa31fbefe simpler websocket & parser implementation (#9) 1 жил өмнө
Cargo.lock 5aa31fbefe simpler websocket & parser implementation (#9) 1 жил өмнө
Cargo.toml 5aa31fbefe simpler websocket & parser implementation (#9) 1 жил өмнө
LICENSE c378397c75 initial commit 1 жил өмнө
README.md 3a34b6d3d1 Update README.md 1 жил өмнө

README.md

Currently features/supports:

  • 4 crypto tickers, from Binance Futures; BTCUSDT, ETHUSDT, SOLUSDT, LTCUSDT
  • 1m, 3m, 5m, 15m and 30m timeframe selections, for both candlestick and footprint charts. Tick based "timeframe" selections is planned
  • Tick size selections for grouping trade prices/quantities on footprint chart
  • Size filtering for trades showing in time&sales table and heatmap chart
  • No historical data for trades/orderbook

There is no server-side, nor is one needed yet. It all happens with exchange API fetch/websockets on the user end.

How the heatmap works:

Each bid or ask is represented by single pixels. These pixels correspond to their price levels and ~100ms time intervals. The color opacity of each pixel indicates the quantity of the bid or ask. It is relative to all other bid or ask quantities visible within the graph time range.

Build from source

Clone the repository into a directory of your choice and build with cargo.

Requirements:


Trading implementation is highly experimental; advised not to use any trading functionality with a real account

Trading functionalities/pane is removed upon with the Iced master migration, as it was very much of unfinished. Still a WIP.

My goal was just to create a lightweight and minimal GUI for trading only. It then evolved to "trading on the chart", which later became a tool to track basic orderflow, as I've discovered on the way that it's not ready for full trading capabilities. Currently still trying to stabilize more charting stuff, to focus on utilizing trading on the charts later on.