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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
//! `exchange-apiws` — Exchange REST and WebSocket clients.
//!
//! Supports **KuCoin** (Spot, Futures, Unified), **Binance**, **Bybit**,
//! **Kraken**, and **Crypto.com**. The crate is designed to be exchange-
//! agnostic: new exchanges implement the [`actors::ExchangeConnector`]
//! trait and the shared runner drives their feeds.
//!
//! # Cargo features
//!
//! KuCoin is the default implementation and is always on. The four other
//! exchanges are opt-out via Cargo features:
//!
//! ```toml
//! [dependencies]
//! # All exchanges (default — same as 0.2.18 behaviour):
//! exchange-apiws = "0.2"
//!
//! # KuCoin-only — smaller compile, no Kraken/Crypto.com signing code:
//! exchange-apiws = { version = "0.2", default-features = false }
//!
//! # Just KuCoin + Binance:
//! exchange-apiws = { version = "0.2", default-features = false, features = ["binance"] }
//! ```
//!
//! Available features: `binance`, `bybit`, `kraken`, `cryptocom`.
//!
//! # Quick start
//!
//! ```no_run
//! use std::sync::Arc;
//! use tokio::sync::{mpsc, watch};
//! use exchange_apiws::client::Credentials;
//! use exchange_apiws::connectors::KuCoin;
//! use exchange_apiws::actors::{DataMessage, ExchangeConnector};
//! use exchange_apiws::ws::{KucoinConnector, WsRunnerConfig, run_feed};
//!
//! #[tokio::main]
//! async fn main() -> exchange_apiws::Result<()> {
//! // ── Connect ───────────────────────────────────────────────────────────
//! let kucoin = KuCoin::futures(Credentials::from_env()?);
//! let client = kucoin.rest_client()?;
//!
//! // ── REST ──────────────────────────────────────────────────────────────
//! let bal = client.get_balance("USDT").await?;
//! let pos = client.get_position("XBTUSDTM").await?;
//! let bars = client.fetch_klines("XBTUSDTM", 200, "1").await?;
//!
//! // ── WebSocket (public) ────────────────────────────────────────────────
//! let token = client.get_ws_token_public().await?;
//! let conn = Arc::new(KucoinConnector::new(&token, kucoin.env())?);
//!
//! let mut subs = vec![];
//! if let Some(s) = conn.trade_subscription("XBTUSDTM") { subs.push(s); }
//! if let Some(s) = conn.ticker_subscription("XBTUSDTM") { subs.push(s); }
//!
//! let (tx, mut rx) = mpsc::channel::<DataMessage>(1024);
//! let (sd_tx, sd_rx) = watch::channel(false);
//! let config = WsRunnerConfig::from_ping_interval(conn.ping_interval_secs);
//!
//! tokio::spawn(run_feed(conn.ws_url().to_string(), subs, conn, tx, config, sd_rx));
//!
//! while let Some(msg) = rx.recv().await {
//! println!("{msg:?}");
//! }
//! Ok(())
//! }
//! ```
//!
//! # Module layout
//!
//! ```text
//! exchange_apiws
//! ├── connectors — exchange-specific config: KucoinEnv, KuCoin builder, ExchangeConfig trait
//! │ (extension point — add new exchanges here)
//! ├── rest/
//! │ ├── account — balance, positions, auto-deposit, risk limit, funding history
//! │ ├── market — klines, ticker, order book, funding rate, mark price, contracts
//! │ └── orders — place, close, cancel, stop orders; fill history; KuCoinClient::calc_contracts
//! ├── ws/
//! │ ├── connect — bullet-private / bullet-public token negotiation
//! │ ├── feed — KucoinConnector: subscription builders + frame parser
//! │ ├── runner — run_feed: async connect/ping/reconnect loop
//! │ └── types — WsToken, WsMessage
//! ├── actors — ExchangeConnector trait, DataMessage and all data types
//! ├── auth — HMAC-SHA256 signing (key version 2, KuCoin-specific)
//! ├── client — KuCoinClient (KuCoin-signed HTTP), Credentials
//! ├── http — PublicRestClient (unauthenticated HTTP); shared helpers
//! ├── error — ExchangeError, Result
//! ├── types — Candle, Side, OrderType, TimeInForce, STP
//! └── prelude — curated glob-import: `use exchange_apiws::prelude::*;`
//! ```
// ── Always-on modules (KuCoin + shared runtime) ───────────────────────────────
// ── Optional per-exchange modules ─────────────────────────────────────────────
// ── Primary re-exports ────────────────────────────────────────────────────────
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use PublicRestClient;
pub use ;
pub use ;
// ── WS convenience re-exports ─────────────────────────────────────────────────
pub use ;
// ── Prelude ────────────────────────────────────────────────────────────────────
/// Curated glob-import surface for the common case.
///
/// `use exchange_apiws::prelude::*;` brings the error types, the unified
/// data model ([`DataMessage`](crate::actors::DataMessage) and the
/// [`ExchangeConnector`](crate::actors::ExchangeConnector) trait), the WS
/// runner entry points, and every enabled exchange's client + connector
/// into scope at once — so feed and trading code doesn't have to reach
/// into the per-module paths.
///
/// Per-exchange items follow the same Cargo features as the crate root
/// (`binance`, `bybit`, `kraken`, `cryptocom`), so the prelude only
/// surfaces what you've enabled.
///
/// ```
/// use exchange_apiws::prelude::*;
///
/// fn handle(msg: DataMessage) -> Result<()> {
/// if let DataMessage::Trade(t) = msg {
/// let _ = (t.exchange, t.symbol, t.price);
/// }
/// Ok(())
/// }
/// ```