forked from sammchardy/python-binance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_client_margin.py
More file actions
645 lines (331 loc) · 14.1 KB
/
Copy pathtest_client_margin.py
File metadata and controls
645 lines (331 loc) · 14.1 KB
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
import pytest
pytestmark = pytest.mark.margin
def test_margin__get_account_status(client):
client.get_account_status()
def test_margin_get_account_api_trading_status(client):
client.get_account_api_trading_status()
def test_margin_get_account_api_permissions(client):
client.get_account_api_permissions()
def test_margin_get_dust_assets(client):
client.get_dust_assets()
def test_margin_get_dust_log(client):
client.test_get_dust_log()
def test_margin_transfer_dust(client):
client.transfer_dust()
def test_margin_get_asset_dividend_history(client):
client.get_asset_dividend_history()
def test_margin_make_universal_transfer(client):
client.make_universal_transfer()
def test_margin_query_universal_transfer_history(client):
client.query_universal_transfer_history()
def test_margin_get_trade_fee(client):
client.get_trade_fee()
def test_margin_get_asset_details(client):
client.get_asset_details()
def test_margin_get_spot_delist_schedule(client):
client.get_spot_delist_schedule()
# Withdraw Endpoints
def test_margin_withdraw(client):
client.withdraw()
def test_margin_get_deposit_history(client):
client.get_deposit_history()
def test_margin_get_withdraw_history(client):
client.get_withdraw_history()
def test_margin_get_withdraw_history_id(client):
client.get_withdraw_history_id()
def test_margin_get_deposit_address(client):
client.get_deposit_address()
# Margin Trading Endpoints
def test_margin_get_margin_account(client):
client.get_margin_account()
def test_margin_get_isolated_margin_account(client):
client.get_isolated_margin_account()
def test_margin_enable_isolated_margin_account(client):
client.enable_isolated_margin_account()
def test_margin_disable_isolated_margin_account(client):
client.disable_isolated_margin_account()
def test_margin_get_enabled_isolated_margin_account_limit(client):
client.get_enabled_isolated_margin_account_limit()
def test_margin_get_margin_dustlog(client):
client.get_margin_dustlog()
def test_margin_get_margin_dust_assets(client):
client.get_margin_dust_assets()
def test_margin_transfer_margin_dust(client):
client.transfer_margin_dust()
def test_margin_get_cross_margin_collateral_ratio(client):
client.get_cross_margin_collateral_ratio()
def test_margin_get_small_liability_exchange_assets(client):
client.get_small_liability_exchange_assets()
def test_margin_exchange_small_liability_assets(client):
client.exchange_small_liability_assets()
def test_margin_get_small_liability_exchange_history(client):
client.get_small_liability_exchange_history()
def test_margin_get_future_hourly_interest_rate(client):
client.get_future_hourly_interest_rate()
def test_margin_get_margin_capital_flow(client):
client.get_margin_capital_flow()
def test_margin_get_margin_asset(client):
client.get_margin_asset()
def test_margin_get_margin_symbol(client):
client.get_margin_symbol()
def test_margin_get_margin_all_assets(client):
client.get_margin_all_assets()
def test_margin_get_margin_all_pairs(client):
client.get_margin_all_pairs()
def test_margin_create_isolated_margin_account(client):
client.create_isolated_margin_account()
def test_margin_get_isolated_margin_symbol(client):
client.get_isolated_margin_symbol()
def test_margin_get_all_isolated_margin_symbols(client):
client.get_all_isolated_margin_symbols()
def test_margin_get_isolated_margin_fee_data(client):
client.get_isolated_margin_fee_data()
def test_margin_get_isolated_margin_tier_data(client):
client.get_isolated_margin_tier_data()
def test_margin_margin_manual_liquidation(client):
client.margin_manual_liquidation()
def test_margin_toggle_bnb_burn_spot_margin(client):
client.toggle_bnb_burn_spot_margin()
def test_margin_get_bnb_burn_spot_margin(client):
client.get_bnb_burn_spot_margin()
def test_margin_get_margin_price_index(client):
client.get_margin_price_index()
def test_margin_transfer_margin_to_spot(client):
client.transfer_margin_to_spot()
def test_margin_transfer_spot_to_margin(client):
client.transfer_spot_to_margin()
def test_margin_transfer_isolated_margin_to_spot(client):
client.transfer_isolated_margin_to_spot()
def test_margin_transfer_spot_to_isolated_margin(client):
client.transfer_spot_to_isolated_margin()
def test_margin_get_isolated_margin_tranfer_history(client):
client.get_isolated_margin_tranfer_history()
def test_margin_create_margin_loan(client):
client.create_margin_loan()
def test_margin_repay_margin_loan(client):
client.repay_margin_loan()
def create_margin_ordertest_(client):
client.create_margin_order()
def test_margin_cancel_margin_order(client):
client.cancel_margin_order()
def test_margin_set_margin_max_leverage(client):
client.set_margin_max_leverage()
def test_margin_get_margin_transfer_history(client):
client.get_margin_transfer_history()
def test_margin_get_margin_loan_details(client):
client.get_margin_loan_details()
def test_margin_get_margin_repay_details(client):
client.get_margin_repay_details()
def test_margin_get_cross_margin_data(client):
client.get_cross_margin_data()
def test_margin_get_margin_interest_history(client):
client.get_margin_interest_history()
def test_margin_get_margin_force_liquidation_rec(client):
client.get_margin_force_liquidation_rec()
def test_margin_get_margin_order(client):
client.get_margin_order()
def test_margin_get_open_margin_orders(client):
client.get_open_margin_orders()
def test_margin_get_all_margin_orders(client):
client.get_all_margin_orders()
def test_margin_get_margin_trades(client):
client.get_margin_trades()
def test_margin_get_max_margin_loan(client):
client.get_max_margin_loan()
def test_margin_get_max_margin_transfer(client):
client.get_max_margin_transfer()
def test_margin_get_margin_delist_schedule(client):
client.get_margin_delist_schedule()
# Margin OCO
def test_margin_create_margin_oco_order(client):
client.create_margin_oco_order()
def test_margin_cancel_margin_oco_order(client):
client.cancel_margin_oco_order()
def test_margin_get_margin_oco_order(client):
client.get_margin_oco_order()
def test_margin_get_open_margin_oco_orders(client):
client.get_open_margin_oco_orders()
# Cross-margin
def test_margin_margin_stream_get_listen_key(client):
client.margin_stream_get_listen_key()
def test_margin_margin_stream_close(client):
client.margin_stream_close()
# Isolated margin
def test_margin_isolated_margin_stream_get_listen_key(client):
client.isolated_margin_stream_get_listen_key()
def test_margin_isolated_margin_stream_close(client):
client.isolated_margin_stream_close()
# Simple Earn Endpoints
def test_margin_get_simple_earn_flexible_product_list(client):
client.get_simple_earn_flexible_product_list()
def test_margin_get_simple_earn_locked_product_list(client):
client.get_simple_earn_locked_product_list()
def test_margin_subscribe_simple_earn_flexible_product(client):
client.subscribe_simple_earn_flexible_product()
def test_margin_subscribe_simple_earn_locked_product(client):
client.subscribe_simple_earn_locked_product()
def test_margin_redeem_simple_earn_flexible_product(client):
client.redeem_simple_earn_flexible_product()
def test_margin_redeem_simple_earn_locked_product(client):
client.redeem_simple_earn_locked_product()
def test_margin_get_simple_earn_flexible_product_position(client):
client.get_simple_earn_flexible_product_position()
def test_margin_get_simple_earn_locked_product_position(client):
client.get_simple_earn_locked_product_position()
def test_margin_get_simple_earn_account(client):
client.get_simple_earn_account()
# Lending Endpoints
def test_margin_get_fixed_activity_project_list(client):
client.get_fixed_activity_project_list()
def test_margin_change_fixed_activity_to_daily_position(client):
client.change_fixed_activity_to_daily_position()
# Staking Endpoints
def test_margin_get_staking_product_list(client):
client.get_staking_product_list()
def test_margin_purchase_staking_product(client):
client.purchase_staking_product()
def test_margin_redeem_staking_product(client):
client.redeem_staking_product()
def test_margin_get_staking_position(client):
client.get_staking_position()
def test_margin_get_staking_purchase_history(client):
client.get_staking_purchase_history()
def test_margin_set_auto_staking(client):
client.set_auto_staking()
def test_margin_get_personal_left_quota(client):
client.get_personal_left_quota()
# US Staking Endpoints
def test_margin_get_staking_asset_us(client):
client.get_staking_asset_us()
def test_margin_stake_asset_us(client):
client.stake_asset_us()
def test_margin_unstake_asset_us(client):
client.unstake_asset_us()
def test_margin_get_staking_balance_us(client):
client.get_staking_balance_us()
def test_margin_get_staking_history_us(client):
client.get_staking_history_us()
def test_margin_get_staking_rewards_history_us(client):
client.get_staking_rewards_history_us()
# Sub Accounts
def test_margin_get_sub_account_list(client):
client.get_sub_account_list()
def test_margin_get_sub_account_transfer_history(client):
client.get_sub_account_transfer_history()
def test_margin_get_sub_account_futures_transfer_history(client):
client.get_sub_account_futures_transfer_history()
def test_margin_create_sub_account_futures_transfer(client):
client.create_sub_account_futures_transfer()
def test_margin_get_sub_account_assets(client):
client.get_sub_account_assets()
def test_margin_query_subaccount_spot_summary(client):
client.query_subaccount_spot_summary()
def test_margin_get_subaccount_deposit_address(client):
client.get_subaccount_deposit_address()
def test_margin_get_subaccount_deposit_history(client):
client.get_subaccount_deposit_history()
def test_margin_get_subaccount_futures_margin_status(client):
client.get_subaccount_futures_margin_status()
def test_margin_enable_subaccount_margin(client):
client.enable_subaccount_margin()
def test_margin_get_subaccount_margin_details(client):
client.get_subaccount_margin_details()
def test_margin_get_subaccount_margin_summary(client):
client.get_subaccount_margin_summary()
def test_margin_enable_subaccount_futures(client):
client.enable_subaccount_futures()
def test_margin_get_subaccount_futures_details(client):
client.get_subaccount_futures_details()
def test_margin_get_subaccount_futures_summary(client):
client.get_subaccount_futures_summary()
def test_margin_get_subaccount_futures_positionrisk(client):
client.get_subaccount_futures_positionrisk()
def test_margin_make_subaccount_futures_transfer(client):
client.make_subaccount_futures_transfer()
def test_margin_make_subaccount_margin_transfer(client):
client.make_subaccount_margin_transfer()
def test_margin_make_subaccount_to_subaccount_transfer(client):
client.make_subaccount_to_subaccount_transfer()
def test_margin_make_subaccount_to_master_transfer(client):
client.make_subaccount_to_master_transfer()
def test_margin_get_subaccount_transfer_history(client):
client.get_subaccount_transfer_history()
def test_margin_make_subaccount_universal_transfer(client):
client.make_subaccount_universal_transfer()
def test_margin_get_universal_transfer_history(client):
client.get_universal_transfer_history()
# Fiat Endpoints
def test_margin_get_fiat_deposit_withdraw_history(client):
client.get_fiat_deposit_withdraw_history()
def test_margin_get_fiat_payments_history(client):
client.get_fiat_payments_history()
# C2C Endpoints
def test_margin_get_c2c_trade_history(client):
client.get_c2c_trade_history()
# Pay Endpoints
def test_margin_get_pay_trade_history(client):
client.get_pay_trade_history()
# Convert Endpoints
def test_margin_get_convert_trade_history(client):
client.get_convert_trade_history()
def test_margin_convert_request_quote(client):
client.convert_request_quote()
def test_margin_convert_accept_quote(client):
client.convert_accept_quote()
def test_margin_new_transfer_history(futuresClient):
futuresClient.new_transfer_history()
def test_margin_funding_wallet(futuresClient):
futuresClient.funding_wallet()
def test_margin_get_user_asset(futuresClient):
futuresClient.get_user_asset()
def test_margin_universal_transfer(futuresClient):
futuresClient.universal_transfer()
def test_margin_get_all_coins_info(client):
client.get_all_coins_info()
def test_margin_get_account_snapshot(client):
client.get_account_snapshot()
def test_margin_disable_fast_withdraw_switch(client):
client.disable_fast_withdraw_switch()
def test_margin_enable_fast_withdraw_switch(client):
client.enable_fast_withdraw_switch()
@pytest.mark.skip(reason="can't test margin endpoints")
def test_margin_next_hourly_interest_rate(client):
client.margin_next_hourly_interest_rate(
assets="BTC",
isIsolated="FALSE"
)
@pytest.mark.skip(reason="can't test margin endpoints")
def test_margin_interest_history(client):
client.margin_interest_history(
asset="BTC",
)
@pytest.mark.skip(reason="can't test margin endpoints")
def test_margin_borrow_repay(client):
client.margin_borrow_repay(
asset="BTC",
amount=0.1,
isIsolated="FALSE",
symbol="BTCUSDT",
type="BORROW"
)
@pytest.mark.skip(reason="can't test margin endpoints")
def test_margin_get_borrow_repay_records(client):
client.margin_get_borrow_repay_records(
asset="BTC",
isolatedSymbol="BTCUSDT",
txId=2970933056,
startTime=1563438204000,
endTime=1563438204000,
current=1,
size=10
)
@pytest.mark.skip(reason="can't test margin endpoints")
def test_margin_interest_rate_history(client):
client.margin_interest_rate_history(
asset="BTC",
)
@pytest.mark.skip(reason="can't test margin endpoints")
def test_margin_max_borrowable(client):
client.margin_max_borrowable(
asset="BTC",
)