1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
//! A versatile websocket client that supports many cryptocurrency exchanges.
//!
//! ## Example
//!
//! ```
//! use crypto_ws_client::{BinanceSpotWSClient, WSClient};
//!
//! #[tokio::main]
//! async fn main() {
//! let (tx, rx) = std::sync::mpsc::channel();
//! tokio::task::spawn(async move {
//! let symbols = vec!["BTCUSDT".to_string(), "ETHUSDT".to_string()];
//! let ws_client = BinanceSpotWSClient::new(tx, None).await;
//! ws_client.subscribe_trade(&symbols).await;
//! // run for 5 seconds
//! let _ = tokio::time::timeout(std::time::Duration::from_secs(5), ws_client.run()).await;
//! ws_client.close();
//! });
//!
//! let mut messages = Vec::new();
//! for msg in rx {
//! messages.push(msg);
//! }
//! assert!(!messages.is_empty());
//! }
//! ```
//! ## High Level APIs
//!
//! The following APIs are high-level APIs with ease of use:
//!
//! * `subscribe_trade(&self, symbols: &[String])`
//! * `subscribe_bbo(&self, symbols: &[String])`
//! * `subscribe_orderbook(&self, symbols: &[String])`
//! * `subscribe_ticker(&self, symbols: &[String])`
//! * `subscribe_candlestick(&self, symbol_interval_list: &[(String, usize)])`
//!
//! They are easier to use and cover most user scenarios.
//!
//! ## Low Level APIs
//!
//! Sometimes high-level APIs can NOT meet users' requirements, this package provides three
//! low-level APIs:
//!
//! * `subscribe(&self, topics: &[(String, String)])`
//! * `unsubscribe(&self, topics: &[(String, String)])`
//! * `send(&self, commands: &[String])`
//!
//! ## OrderBook Data Categories
//!
//! Each orderbook has three properties: `aggregation`, `frequency` and `depth`.
//!
//! | | Aggregated | Non-Aggregated |
//! | -------------------- | ----------------- | -------------- |
//! | Updated per Tick | Inremental Level2 | Level3 |
//! | Updated per Interval | Snapshot Level2 | Not Usefull |
//!
//! * Level1 data is non-aggregated, updated per tick, top 1 bid & ask from the original orderbook.
//! * Level2 data is aggregated by price level, updated per tick.
//! * Level3 data is the original orderbook, which is not aggregated.
pub use WSClient;
pub use ;