rust-okx 0.5.0

Async Rust client for the OKX v5 REST API
Documentation
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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
use crate::client::OkxClient;
use crate::error::Error;
use crate::transport::Transport;

use super::endpoints::*;
use super::internal::*;
use super::requests::*;
use super::responses::*;

/// Accessor for the authenticated trading endpoints.
///
/// Obtain one via [`OkxClient::trade`](crate::OkxClient::trade). All methods
/// require credentials.
pub struct Trade<'a, T> {
    client: &'a OkxClient<T>,
}

impl<'a, T: Transport> Trade<'a, T> {
    pub(crate) fn new(client: &'a OkxClient<T>) -> Self {
        Self { client }
    }

    /// Place an order.
    ///
    /// `POST /api/v5/trade/order`. Authenticated. Build the request with
    /// [`PlaceOrderRequest::new`] plus optional setters. The returned vector
    /// contains one [`PlaceOrderResult`]; inspect its
    /// [`s_code`](PlaceOrderResult::s_code) to confirm acceptance (`"0"`).
    ///
    /// # Errors
    ///
    /// Returns [`Error::Configuration`] without credentials, [`Error::Api`] on a
    /// non-zero top-level OKX code, or transport/decode errors.
    pub async fn place_order(
        &self,
        request: &PlaceOrderRequest,
    ) -> Result<Vec<PlaceOrderResult>, Error> {
        self.client.post(ORDER, request, true).await
    }

    /// Place multiple orders.
    ///
    /// `POST /api/v5/trade/batch-orders`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn place_multiple_orders(
        &self,
        requests: &[PlaceOrderRequest],
    ) -> Result<Vec<PlaceOrderResult>, Error> {
        self.client.post(BATCH_ORDERS, &requests, true).await
    }

    /// Cancel an order by its OKX order ID.
    ///
    /// `POST /api/v5/trade/cancel-order`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn cancel_order(
        &self,
        inst_id: &str,
        ord_id: &str,
    ) -> Result<Vec<CancelOrderResult>, Error> {
        let body = CancelOrderBody { inst_id, ord_id };
        self.client.post(CANCEL_ORDER, &body, true).await
    }

    /// Cancel multiple orders.
    ///
    /// `POST /api/v5/trade/cancel-batch-orders`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn cancel_multiple_orders(
        &self,
        requests: &[CancelOrderRequest],
    ) -> Result<Vec<CancelOrderResult>, Error> {
        self.client.post(CANCEL_BATCH_ORDERS, &requests, true).await
    }

    /// Amend an existing order.
    ///
    /// `POST /api/v5/trade/amend-order`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn amend_order(
        &self,
        request: &AmendOrderRequest,
    ) -> Result<Vec<AmendOrderResult>, Error> {
        self.client.post(AMEND_ORDER, request, true).await
    }

    /// Amend multiple existing orders.
    ///
    /// `POST /api/v5/trade/amend-batch-orders`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn amend_multiple_orders(
        &self,
        requests: &[AmendOrderRequest],
    ) -> Result<Vec<AmendOrderResult>, Error> {
        self.client.post(AMEND_BATCH_ORDERS, &requests, true).await
    }

    /// Close positions for an instrument.
    ///
    /// `POST /api/v5/trade/close-position`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn close_positions(
        &self,
        request: &ClosePositionRequest,
    ) -> Result<Vec<ClosePositionResult>, Error> {
        self.client.post(CLOSE_POSITION, request, true).await
    }

    /// Retrieve the details of a single order by its OKX order ID.
    ///
    /// `GET /api/v5/trade/order`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_order(&self, inst_id: &str, ord_id: &str) -> Result<Vec<Order>, Error> {
        let query = GetOrderQuery { inst_id, ord_id };
        self.client.get(ORDER, &query, true).await
    }

    /// Retrieve pending orders.
    ///
    /// `GET /api/v5/trade/orders-pending`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_order_list(&self, request: &OrderListRequest) -> Result<Vec<Order>, Error> {
        self.client.get(ORDERS_PENDING, request, true).await
    }

    /// Retrieve order history for the recent window.
    ///
    /// `GET /api/v5/trade/orders-history`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_orders_history(
        &self,
        request: &OrderHistoryRequest,
    ) -> Result<Vec<Order>, Error> {
        self.client.get(ORDERS_HISTORY, request, true).await
    }

    /// Retrieve archived order history.
    ///
    /// `GET /api/v5/trade/orders-history-archive`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_orders_history_archive(
        &self,
        request: &OrderHistoryRequest,
    ) -> Result<Vec<Order>, Error> {
        self.client.get(ORDERS_HISTORY_ARCHIVE, request, true).await
    }

    /// Retrieve recent fills.
    ///
    /// `GET /api/v5/trade/fills`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_fills(&self, request: &FillsRequest) -> Result<Vec<Fill>, Error> {
        self.client.get(FILLS, request, true).await
    }

    /// Retrieve historical fills.
    ///
    /// `GET /api/v5/trade/fills-history`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_fills_history(
        &self,
        request: &FillHistoryRequest,
    ) -> Result<Vec<FillHistory>, Error> {
        self.client.get(FILLS_HISTORY, request, true).await
    }

    /// Place an algo order.
    ///
    /// `POST /api/v5/trade/order-algo`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn place_algo_order(
        &self,
        request: &AlgoOrderRequest,
    ) -> Result<Vec<AlgoOrderResult>, Error> {
        self.client.post(ORDER_ALGO, request, true).await
    }

    /// Cancel algo orders.
    ///
    /// `POST /api/v5/trade/cancel-algos`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn cancel_algo_orders(
        &self,
        requests: &[CancelAlgoOrderRequest],
    ) -> Result<Vec<AlgoOrderResult>, Error> {
        self.client.post(CANCEL_ALGOS, &requests, true).await
    }

    /// Amend an algo order.
    ///
    /// `POST /api/v5/trade/amend-algos`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn amend_algo_order(
        &self,
        request: &AmendAlgoOrderRequest,
    ) -> Result<Vec<AlgoOrderResult>, Error> {
        self.client.post(AMEND_ALGOS, request, true).await
    }

    /// Retrieve pending algo orders.
    ///
    /// `GET /api/v5/trade/orders-algo-pending`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_algo_order_list(
        &self,
        request: &AlgoOrderListRequest,
    ) -> Result<Vec<AlgoOrder>, Error> {
        self.client.get(ORDERS_ALGO_PENDING, request, true).await
    }

    /// Retrieve algo order history.
    ///
    /// `GET /api/v5/trade/orders-algo-history`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_algo_orders_history(
        &self,
        request: &AlgoOrderHistoryRequest,
    ) -> Result<Vec<AlgoOrder>, Error> {
        self.client.get(ORDERS_ALGO_HISTORY, request, true).await
    }

    /// Retrieve details for an algo order.
    ///
    /// `GET /api/v5/trade/order-algo`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_algo_order_details(
        &self,
        request: &AlgoOrderDetailsRequest,
    ) -> Result<Vec<AlgoOrder>, Error> {
        self.client.get(ORDER_ALGO_DETAILS, request, true).await
    }

    /// Retrieve the easy-convert currency list.
    ///
    /// `GET /api/v5/trade/easy-convert-currency-list`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_easy_convert_currency_list(&self) -> Result<Vec<EasyConvertCurrency>, Error> {
        self.client
            .get(EASY_CONVERT_CURRENCY_LIST, &NoQuery, true)
            .await
    }

    /// Execute an easy-convert request.
    ///
    /// `POST /api/v5/trade/easy-convert`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn easy_convert(
        &self,
        request: &EasyConvertRequest,
    ) -> Result<Vec<EasyConvertResult>, Error> {
        self.client.post(EASY_CONVERT, request, true).await
    }

    /// Retrieve easy-convert history.
    ///
    /// `GET /api/v5/trade/easy-convert-history`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_easy_convert_history(
        &self,
        request: &EasyConvertHistoryRequest,
    ) -> Result<Vec<EasyConvertHistory>, Error> {
        self.client.get(EASY_CONVERT_HISTORY, request, true).await
    }

    /// Retrieve one-click-repay currency pairs.
    ///
    /// `GET /api/v5/trade/one-click-repay-currency-list`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_one_click_repay_currency_list(
        &self,
        request: &OneClickRepayCurrencyListRequest,
    ) -> Result<Vec<OneClickRepayCurrency>, Error> {
        self.client
            .get(ONE_CLICK_REPAY_CURRENCY_LIST, request, true)
            .await
    }

    /// Execute one-click repay.
    ///
    /// `POST /api/v5/trade/one-click-repay`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn one_click_repay(
        &self,
        request: &OneClickRepayRequest,
    ) -> Result<Vec<OneClickRepayResult>, Error> {
        self.client.post(ONE_CLICK_REPAY, request, true).await
    }

    /// Retrieve one-click-repay history.
    ///
    /// `GET /api/v5/trade/one-click-repay-history`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_one_click_repay_history(
        &self,
        request: &OneClickRepayHistoryRequest,
    ) -> Result<Vec<OneClickRepayHistory>, Error> {
        self.client
            .get(ONE_CLICK_REPAY_HISTORY, request, true)
            .await
    }

    /// Retrieve one-click-repay v2 currency pairs.
    ///
    /// `GET /api/v5/trade/one-click-repay-currency-list-v2`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_one_click_repay_currency_list_v2(
        &self,
        request: &OneClickRepayCurrencyListRequest,
    ) -> Result<Vec<OneClickRepayCurrency>, Error> {
        self.client
            .get(ONE_CLICK_REPAY_CURRENCY_LIST_V2, request, true)
            .await
    }

    /// Execute one-click repay v2.
    ///
    /// `POST /api/v5/trade/one-click-repay-v2`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn one_click_repay_v2(
        &self,
        request: &OneClickRepayRequest,
    ) -> Result<Vec<OneClickRepayResult>, Error> {
        self.client.post(ONE_CLICK_REPAY_V2, request, true).await
    }

    /// Retrieve one-click-repay v2 history.
    ///
    /// `GET /api/v5/trade/one-click-repay-history-v2`. Authenticated.
    ///
    /// # Errors
    ///
    /// See [`place_order`](Self::place_order).
    pub async fn get_one_click_repay_history_v2(
        &self,
        request: &OneClickRepayHistoryRequest,
    ) -> Result<Vec<OneClickRepayHistory>, Error> {
        self.client
            .get(ONE_CLICK_REPAY_HISTORY_V2, request, true)
            .await
    }
}