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
//! Binance margin trading operations.
//!
//! This module contains all margin trading methods including borrowing, repaying,
//! and margin-specific account operations.
use super::super::signed_request::HttpMethod;
use super::super::{Binance, parser};
use ccxt_core::{
Error, ParseError, Result,
types::{MarginAdjustment, MarginLoan, MarginRepay},
};
use rust_decimal::Decimal;
impl Binance {
// ==================== Borrow Methods ====================
/// Borrow funds in cross margin mode.
///
/// # Arguments
///
/// * `currency` - Currency code (e.g., "USDT", "BTC").
/// * `amount` - Borrow amount.
///
/// # Returns
///
/// Returns a [`MarginLoan`] record with transaction details.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
///
/// # Example
///
/// ```no_run
/// # use ccxt_exchanges::binance::Binance;
/// # use ccxt_core::ExchangeConfig;
/// # async fn example() -> ccxt_core::Result<()> {
/// let mut config = ExchangeConfig::default();
/// config.api_key = Some("your_api_key".to_string());
/// config.secret = Some("your_secret".to_string());
/// let binance = Binance::new(config)?;
/// let loan = binance.borrow_cross_margin("USDT", 100.0).await?;
/// println!("Loan ID: {}", loan.id);
/// # Ok(())
/// # }
/// ```
pub async fn borrow_cross_margin(&self, currency: &str, amount: f64) -> Result<MarginLoan> {
let url = format!("{}/sapi/v1/margin/loan", self.urls().sapi);
let data = self
.signed_request(url)
.method(HttpMethod::Post)
.param("asset", currency)
.param("amount", amount)
.execute()
.await?;
parser::parse_margin_loan(&data)
}
/// Borrow funds in isolated margin mode.
///
/// # Arguments
///
/// * `symbol` - Trading pair symbol (e.g., "BTC/USDT").
/// * `currency` - Currency code to borrow.
/// * `amount` - Borrow amount.
///
/// # Returns
///
/// Returns a [`MarginLoan`] record with transaction details.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
///
/// # Example
///
/// ```no_run
/// # use ccxt_exchanges::binance::Binance;
/// # use ccxt_core::ExchangeConfig;
/// # async fn example() -> ccxt_core::Result<()> {
/// let mut config = ExchangeConfig::default();
/// config.api_key = Some("your_api_key".to_string());
/// config.secret = Some("your_secret".to_string());
/// let binance = Binance::new(config)?;
/// let loan = binance.borrow_isolated_margin("BTC/USDT", "USDT", 100.0).await?;
/// println!("Loan ID: {}", loan.id);
/// # Ok(())
/// # }
/// ```
pub async fn borrow_isolated_margin(
&self,
symbol: &str,
currency: &str,
amount: f64,
) -> Result<MarginLoan> {
self.load_markets(false).await?;
let market = self.base().market(symbol).await?;
let url = format!("{}/sapi/v1/margin/loan", self.urls().sapi);
let data = self
.signed_request(url)
.method(HttpMethod::Post)
.param("asset", currency)
.param("amount", amount)
.param("symbol", &market.id)
.param("isIsolated", "TRUE")
.execute()
.await?;
parser::parse_margin_loan(&data)
}
// ==================== Repay Methods ====================
/// Repay borrowed funds in cross margin mode.
///
/// # Arguments
///
/// * `currency` - Currency code (e.g., "USDT", "BTC").
/// * `amount` - Repayment amount.
///
/// # Returns
///
/// Returns a [`MarginRepay`] record with transaction details.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
///
/// # Example
///
/// ```no_run
/// # use ccxt_exchanges::binance::Binance;
/// # use ccxt_core::ExchangeConfig;
/// # async fn example() -> ccxt_core::Result<()> {
/// let mut config = ExchangeConfig::default();
/// config.api_key = Some("your_api_key".to_string());
/// config.secret = Some("your_secret".to_string());
/// let binance = Binance::new(config)?;
/// let repay = binance.repay_cross_margin("USDT", 100.0).await?;
/// println!("Repay ID: {}", repay.id);
/// # Ok(())
/// # }
/// ```
pub async fn repay_cross_margin(&self, currency: &str, amount: f64) -> Result<MarginRepay> {
let url = format!("{}/sapi/v1/margin/repay", self.urls().sapi);
let data = self
.signed_request(url)
.method(HttpMethod::Post)
.param("asset", currency)
.param("amount", amount)
.execute()
.await?;
let loan = parser::parse_margin_loan(&data)?;
Ok(MarginRepay {
id: loan.id,
currency: loan.currency,
amount: loan.amount,
symbol: loan.symbol,
timestamp: loan.timestamp,
datetime: loan.datetime,
status: loan.status,
is_isolated: loan.is_isolated,
info: loan.info,
})
}
/// Repay borrowed funds in isolated margin mode.
///
/// # Arguments
///
/// * `symbol` - Trading pair symbol (e.g., "BTC/USDT").
/// * `currency` - Currency code to repay.
/// * `amount` - Repayment amount.
///
/// # Returns
///
/// Returns a [`MarginRepay`] record with transaction details.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
///
/// # Example
///
/// ```no_run
/// # use ccxt_exchanges::binance::Binance;
/// # use ccxt_core::ExchangeConfig;
/// # use rust_decimal_macros::dec;
/// # async fn example() -> ccxt_core::Result<()> {
/// let mut config = ExchangeConfig::default();
/// config.api_key = Some("your_api_key".to_string());
/// config.secret = Some("your_secret".to_string());
/// let binance = Binance::new(config)?;
/// let repay = binance.repay_isolated_margin("BTC/USDT", "USDT", dec!(100)).await?;
/// println!("Repay ID: {}", repay.id);
/// # Ok(())
/// # }
/// ```
pub async fn repay_isolated_margin(
&self,
symbol: &str,
currency: &str,
amount: Decimal,
) -> Result<MarginRepay> {
self.load_markets(false).await?;
let market = self.base().market(symbol).await?;
let url = format!("{}/sapi/v1/margin/repay", self.urls().sapi);
let data = self
.signed_request(url)
.method(HttpMethod::Post)
.param("asset", currency)
.param("amount", amount)
.param("symbol", &market.id)
.param("isIsolated", "TRUE")
.execute()
.await?;
let loan = parser::parse_margin_loan(&data)?;
Ok(MarginRepay {
id: loan.id,
currency: loan.currency,
amount: loan.amount,
symbol: loan.symbol,
timestamp: loan.timestamp,
datetime: loan.datetime,
status: loan.status,
is_isolated: loan.is_isolated,
info: loan.info,
})
}
// ==================== Margin Info Methods ====================
/// Fetch margin adjustment history.
///
/// Retrieves liquidation records and margin adjustment history.
///
/// # Arguments
///
/// * `symbol` - Optional trading pair symbol (required for isolated margin).
/// * `since` - Optional start timestamp in milliseconds.
/// * `limit` - Optional maximum number of records to return.
///
/// # Returns
///
/// Returns a vector of [`MarginAdjustment`] records.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
pub async fn fetch_margin_adjustment_history(
&self,
symbol: Option<&str>,
since: Option<i64>,
limit: Option<i64>,
) -> Result<Vec<MarginAdjustment>> {
let market_id = if let Some(sym) = symbol {
self.load_markets(false).await?;
let market = self.base().market(sym).await?;
Some(market.id.clone())
} else {
None
};
let url = format!("{}/sapi/v1/margin/forceLiquidationRec", self.urls().sapi);
let data = self
.signed_request(url)
.optional_param("symbol", market_id.as_ref())
.optional_param("isolatedSymbol", market_id.as_ref())
.optional_param("startTime", since)
.optional_param("size", limit)
.execute()
.await?;
let rows = data["rows"].as_array().ok_or_else(|| {
Error::from(ParseError::invalid_format(
"data",
"Expected rows array in response",
))
})?;
let mut adjustments = Vec::new();
for row in rows {
if let Ok(adjustment) = parser::parse_margin_adjustment(row) {
adjustments.push(adjustment);
}
}
Ok(adjustments)
}
/// Fetch maximum borrowable amount for cross margin.
///
/// # Arguments
///
/// * `currency` - Currency code (e.g., "USDT", "BTC").
///
/// # Returns
///
/// Returns the maximum borrowable amount as a `Decimal`.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
pub async fn fetch_cross_margin_max_borrowable(&self, currency: &str) -> Result<Decimal> {
let url = format!("{}/sapi/v1/margin/maxBorrowable", self.urls().sapi);
let data = self
.signed_request(url)
.param("asset", currency)
.execute()
.await?;
let amount_str = data["amount"]
.as_str()
.ok_or_else(|| Error::from(ParseError::missing_field("amount")))?;
amount_str.parse::<Decimal>().map_err(|e| {
Error::from(ParseError::invalid_format(
"amount",
format!("Failed to parse amount: {}", e),
))
})
}
/// Fetch maximum borrowable amount for isolated margin.
///
/// # Arguments
///
/// * `symbol` - Trading pair symbol (e.g., "BTC/USDT").
/// * `currency` - Currency code to check.
///
/// # Returns
///
/// Returns the maximum borrowable amount as a `Decimal`.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
pub async fn fetch_isolated_margin_max_borrowable(
&self,
symbol: &str,
currency: &str,
) -> Result<Decimal> {
self.load_markets(false).await?;
let market = self.base().market(symbol).await?;
let url = format!("{}/sapi/v1/margin/maxBorrowable", self.urls().sapi);
let data = self
.signed_request(url)
.param("asset", currency)
.param("isolatedSymbol", &market.id)
.execute()
.await?;
let amount_str = data["amount"]
.as_str()
.ok_or_else(|| Error::from(ParseError::missing_field("amount")))?;
amount_str.parse::<Decimal>().map_err(|e| {
Error::from(ParseError::invalid_format(
"amount",
format!("Failed to parse amount: {}", e),
))
})
}
/// Fetch maximum transferable amount.
///
/// # Arguments
///
/// * `currency` - Currency code (e.g., "USDT", "BTC").
///
/// # Returns
///
/// Returns the maximum transferable amount as a `Decimal`.
///
/// # Errors
///
/// Returns an error if authentication fails or the API request fails.
pub async fn fetch_max_transferable(&self, currency: &str) -> Result<Decimal> {
let url = format!("{}/sapi/v1/margin/maxTransferable", self.urls().sapi);
let data = self
.signed_request(url)
.param("asset", currency)
.execute()
.await?;
let amount_str = data["amount"]
.as_str()
.ok_or_else(|| Error::from(ParseError::missing_field("amount")))?;
amount_str.parse::<Decimal>().map_err(|e| {
Error::from(ParseError::invalid_format(
"amount",
format!("Failed to parse amount: {}", e),
))
})
}
}