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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
#![allow(unused)]
use async_trait::async_trait;
use std::{
collections::{BTreeMap, HashMap},
pin::Pin,
sync::Arc,
};
use futures::Future;
use reqwest::Method;
use serde_json::Value;
use crate::endpoints::v5market;
use super::http_manager::{HttpManager, Manager};
#[async_trait]
pub trait Market {
fn new(http_manager: Arc<HttpManager>) -> Self;
async fn get_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_mark_price_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_index_price_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_premium_index_price_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_instruments_info(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_orderbook(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_tickers(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_funding_rate_history(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_public_trade_history(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_open_interest(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_historical_volatility(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_insurance(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_risk_limit(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
async fn get_option_delivery_price(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>>;
}
pub struct MarketHTTP {
http_manager: Arc<HttpManager>,
}
#[async_trait]
impl Market for MarketHTTP {
///
///
//// Initialize the MarketHTTP by passing the Arc<HttpManager>
///
///
fn new(http_manager: Arc<HttpManager>) -> Self {
MarketHTTP { http_manager }
}
/// Query the kline data. Charts are returned in groups based on the requested interval.
/// Required args:
/// category (string): Product type: spot,linear,inverse
/// symbol (string): Symbol name
/// interval (string): Kline interval.
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/kline
async fn get_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetKline.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query the mark price kline data. Charts are returned in groups based on the requested interval.
/// Required args:
/// category (string): Product type. linear,inverse
/// symbol (string): Symbol name
/// interval (string): Kline interval. 1,3,5,15,30,60,120,240,360,720,D,M,W
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/mark-kline
async fn get_mark_price_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetMarkPriceKline.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query the index price kline data. Charts are returned in groups based on the requested interval.
/// Required args:
/// category (string): Product type. linear,inverse
/// symbol (string): Symbol name
/// interval (string): Kline interval. 1,3,5,15,30,60,120,240,360,720,D,M,W
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/index-kline
async fn get_index_price_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetIndexPriceKline.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Retrieve the premium index price kline data. Charts are returned in groups based on the requested interval.
/// Required args:
/// category (string): Product type. linear
/// symbol (string): Symbol name
/// interval (string): Kline interval
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/preimum-index-kline
async fn get_premium_index_price_kline(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetPremiumIndexPriceKline.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query a list of instruments of online trading pair.
/// Required args:
/// category (string): Product type. spot,linear,inverse,option
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/instrument
async fn get_instruments_info(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetInstrumentsInfo.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query orderbook data
/// Required args:
/// category (string): Product type. spot, linear, inverse, option
/// symbol (string): Symbol name
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/orderbook
async fn get_orderbook(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetOrderbook.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query the latest price snapshot, best bid/ask price, and trading volume in the last 24 hours.
/// Required args:
/// category (string): Product type. spot,linear,inverse,option
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/tickers
async fn get_tickers(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetTickers.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query historical funding rate. Each symbol has a different funding interval.
/// For example, if the interval is 8 hours and the current time is UTC 12, then it returns the last funding rate, which settled at UTC 8.
/// To query the funding rate interval, please refer to instruments-info.
/// Required args:
/// category (string): Product type. linear,inverse
/// symbol (string): Symbol name
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/history-fund-rate
async fn get_funding_rate_history(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetFundingRateHistory.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Query recent public trading data in Bybit.
/// Required args:
/// category (string): Product type. spot,linear,inverse,option
/// symbol (string): Symbol name
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/recent-trade
async fn get_public_trade_history(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
let url = v5market::MarketEnum::GetPublicTradingHistory.to_string();
self.http_manager
.submit_request(Method::GET, &url, query, true)
.await
}
/// Get open interest of each symbol.
/// Required args:
/// category (string): Product type. linear,inverse
/// symbol (string): Symbol name
/// intervalTime (string): Interval. 5min,15min,30min,1h,4h,1d
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/open-interest
async fn get_open_interest(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
self.http_manager
.submit_request(
Method::GET,
&v5market::MarketEnum::GetOpenInterest.to_string(),
query,
true,
)
.await
}
/// Query option historical volatility
/// Required args:
/// category (string): Product type. option
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/iv
async fn get_historical_volatility(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
self.http_manager
.submit_request(
Method::GET,
&v5market::MarketEnum::GetHistoricalVolatility.to_string(),
query,
true,
)
.await
}
/// Query Bybit insurance pool data (BTC/USDT/USDC etc).
/// The data is updated every 24 hours.
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/insurance
async fn get_insurance(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
self.http_manager
.submit_request(
Method::GET,
&v5market::MarketEnum::GetInsurance.to_string(),
query,
true,
)
.await
}
/// Query risk limit of futures
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/risk-limit
async fn get_risk_limit(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
self.http_manager
.submit_request(
Method::GET,
&v5market::MarketEnum::GetRiskLimit.to_string(),
query,
true,
)
.await
}
/// Query Bybit insurance pool data (BTC/USDT/USDC etc).
/// The data is updated every 24 hours.
/// Returns:
/// Request results as HashMap.
/// Additional information:
/// https://bybit-exchange.github.io/docs/v5/market/insurance
async fn get_option_delivery_price(
&self,
query: HashMap<String, String>,
) -> Result<Value, Box<dyn std::error::Error + Send + Sync + 'static>> {
self.http_manager
.submit_request(
Method::GET,
&v5market::MarketEnum::GetOptionDeliveryPrice.to_string(),
query,
true,
)
.await
}
}