forked from whittlem/pycryptobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTradingAccount.py
1064 lines (967 loc) · 40.5 KB
/
TradingAccount.py
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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""Live or test trading account"""
import re
from datetime import datetime
import time
import numpy as np
import pandas as pd
from utils.PyCryptoBot import truncate
from models.exchange.ExchangesEnum import Exchange
from models.exchange.binance import AuthAPI as BAuthAPI
from models.exchange.coinbase import AuthAPI as CAuthAPI
from models.exchange.coinbase_pro import AuthAPI as CBAuthAPI
from models.exchange.kucoin import AuthAPI as KAuthAPI
class TradingAccount:
def __init__(self, app=None):
"""Trading account object model
Parameters
----------
app : object
PyCryptoBot object
"""
# config needs to be a dictionary, empty or otherwise
if app is None:
raise TypeError("App is not a PyCryptoBot object.")
# if trading account is for testing it will be instantiated with a balance of 1000
self.balance = pd.DataFrame(
[[app.quote_currency, 0, 0, 0], [app.base_currency, 0, 0, 0]],
columns=["currency", "balance", "hold", "available"],
)
self.app = app
if app.is_live:
self.mode = "live"
else:
self.mode = "test"
self.quote_balance = self.get_balance(app.quote_currency)
self.base_balance = self.get_balance(app.base_currency)
self.base_balance_before = 0.0
self.quote_balance_before = 0.0
self.orders = pd.DataFrame()
def _convert_status(self, val):
if val == "filled":
return "done"
else:
return val
def _check_market_syntax(self, market):
"""Check that the market is syntactically correct
Parameters
----------
market : str
market to check
"""
if self.app.exchange == Exchange.COINBASE and market != "":
p = re.compile(r"^[0-9A-Z]{1,20}\-[1-9A-Z]{2,5}$")
if not p.match(market):
raise TypeError("Coinbase market is invalid.")
elif self.app.exchange == Exchange.COINBASEPRO and market != "":
p = re.compile(r"^[0-9A-Z]{1,20}\-[1-9A-Z]{2,5}$")
if not p.match(market):
raise TypeError("Coinbase Pro market is invalid.")
elif self.app.exchange == Exchange.BINANCE:
p = re.compile(r"^[0-9A-Z]{4,25}$")
if not p.match(market):
raise TypeError("Binance market is invalid.")
elif self.app.exchange == Exchange.KUCOIN:
p = re.compile(r"^[0-9A-Z]{1,20}\-[1-9A-Z]{2,5}$")
if not p.match(market):
raise TypeError("Kucoin market is invalid.")
def get_orders(self, market="", action="", status="all"):
"""Retrieves orders either live or simulation
Parameters
----------
market : str, optional
Filters orders by market
action : str, optional
Filters orders by action
status : str
Filters orders by status, defaults to 'all'
"""
# validate market is syntactically correct
self._check_market_syntax(market)
if action != "":
# validate action is either a buy or sell
if action not in ["buy", "sell"]:
raise ValueError("Invalid order action.")
# validate status is open, pending, done, active or all
if status not in ["open", "pending", "done", "active", "all", "filled"]:
raise ValueError("Invalid order status.")
if self.app.exchange == Exchange.BINANCE:
if self.mode == "live":
# if config is provided and live connect to Binance account portfolio
model = BAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_url,
recv_window=self.app.recv_window,
app=self.app
)
# retrieve orders from live Binance account portfolio
self.orders = model.get_orders(market, action, status)
return self.orders
else:
# return dummy orders
if market == "" or len(self.orders) == 0:
return self.orders
else:
return self.orders[self.orders["market"] == market]
if self.app.exchange == Exchange.KUCOIN:
if self.mode == "live":
# if config is provided and live connect to Kucoin account portfolio
model = KAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_passphrase,
self.app.api_url,
use_cache=self.app.usekucoincache,
app=self.app
)
# retrieve orders from live Kucoin account portfolio
self.orders = model.get_orders(market, action, status)
return self.orders
else:
if market == "":
return self.orders
else:
return self.orders[self.orders["market"] == market]
if self.app.exchange == Exchange.COINBASE:
if self.mode == "live":
# if config is provided and live connect to Coinbase Pro account portfolio
model = CAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_url,
app=self.app
)
# retrieve orders from live Coinbase Pro account portfolio
self.orders = model.get_orders(market, action, status)
return self.orders
else:
# return dummy orders
if market == "":
return self.orders
else:
if "market" in self.orders:
return self.orders[self.orders["market"] == market]
else:
return pd.DataFrame()
if self.app.exchange == Exchange.COINBASEPRO:
if self.mode == "live":
# if config is provided and live connect to Coinbase Pro account portfolio
model = CBAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_passphrase,
self.app.api_url,
app=self.app
)
# retrieve orders from live Coinbase Pro account portfolio
self.orders = model.get_orders(market, action, status)
return self.orders
else:
# return dummy orders
if market == "":
return self.orders
else:
if "market" in self.orders:
return self.orders[self.orders["market"] == market]
else:
return pd.DataFrame()
if self.app.exchange == Exchange.COINBASE:
if self.mode == "live":
# if config is provided and live connect to Coinbase account portfolio
model = CAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_url,
app=self.app
)
# retrieve orders from live Coinbase Pro account portfolio
self.orders = model.get_orders(market, action, status)
return self.orders
else:
# return dummy orders
if market == "":
return self.orders
else:
if "market" in self.orders:
return self.orders[self.orders["market"] == market]
else:
return pd.DataFrame()
if self.app.exchange == Exchange.DUMMY:
return self.orders[
[
"created_at",
"market",
"action",
"type",
"size",
"filled",
"fees",
"price",
"status",
]
]
def get_balance(self, currency=""):
"""Retrieves balance either live or simulation
Parameters
----------
currency: str, optional
Filters orders by currency
"""
if self.app.exchange == Exchange.KUCOIN:
if self.mode == "live":
model = KAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_passphrase,
self.app.api_url,
use_cache=self.app.usekucoincache,
app=self.app
)
trycnt, maxretry = (0, 5)
while trycnt <= maxretry:
df = model.get_accounts()
if isinstance(df, pd.DataFrame) and len(df) > 0:
if currency == "":
# retrieve all balances
return df
else:
# retrieve balance of specified currency
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
else:
time.sleep(5)
trycnt += 1
if trycnt >= maxretry:
raise Exception(
"TradingAccount: Kucoin API Error while getting balance."
)
else:
return 0.0
else:
# return dummy balances
if currency == "":
# retrieve all balances
return self.balance
else:
self.balance = self.balance.replace("QUOTE", currency)
if self.balance.currency[
self.balance.currency.isin([currency])
].empty:
self.balance.loc[len(self.balance)] = [currency, 0, 0, 0]
# retrieve balance of specified currency
df = self.balance
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
elif self.app.exchange == Exchange.BINANCE:
if self.mode == "live":
model = BAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_url,
recv_window=self.app.recv_window,
app=self.app
)
df = model.get_account()
if isinstance(df, pd.DataFrame):
if currency == "":
# retrieve all balances
return df
else:
# return nil if dataframe is empty
if len(df) == 0:
return 0.0
# retrieve balance of specified currency
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
else:
return 0.0
else:
# return dummy balances
if currency == "":
# retrieve all balances
return self.balance
else:
if self.app.exchange == Exchange.BINANCE:
self.balance = self.balance.replace("QUOTE", currency)
else:
# replace QUOTE and BASE placeholders
if currency in ["EUR", "GBP", "USD"]:
self.balance = self.balance.replace("QUOTE", currency)
else:
self.balance = self.balance.replace("BASE", currency)
if self.balance.currency[
self.balance.currency.isin([currency])
].empty:
self.balance.loc[len(self.balance)] = [currency, 0, 0, 0]
# retrieve balance of specified currency
df = self.balance
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
elif self.app.exchange == Exchange.COINBASE:
if self.mode == "live":
# if config is provided and live connect to Coinbase Pro account portfolio
model = CAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_url,
app=self.app
)
trycnt, maxretry = (0, 5)
while trycnt <= maxretry:
df = model.get_accounts()
if len(df) > 0:
# retrieve all balances, but check the resp
if currency == "" and "balance" not in df:
time.sleep(5)
trycnt += 1
# retrieve all balances and return
elif currency == "":
return df
else:
# retrieve balance of specified currency
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
else:
time.sleep(5)
trycnt += 1
if trycnt >= maxretry:
raise Exception(
f"TradingAccount: '{self.app.exchange}' API Error while getting balance."
)
else:
return 0.0
elif self.app.exchange == Exchange.COINBASEPRO:
if self.mode == "live":
# if config is provided and live connect to Coinbase Pro account portfolio
model = CBAuthAPI(
self.app.api_key,
self.app.api_secret,
self.app.api_passphrase,
self.app.api_url,
app=self.app
)
trycnt, maxretry = (0, 5)
while trycnt <= maxretry:
df = model.get_accounts()
if len(df) > 0:
# retrieve all balances, but check the resp
if currency == "" and "balance" not in df:
time.sleep(5)
trycnt += 1
# retrieve all balances and return
elif currency == "":
return df
else:
# retrieve balance of specified currency
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
else:
time.sleep(5)
trycnt += 1
if trycnt >= maxretry:
raise Exception(
"TradingAccount: CoinbasePro API Error while getting balance."
)
else:
return 0.0
else:
# return dummy balances
if currency == "":
# retrieve all balances
return self.balance
else:
# replace QUOTE and BASE placeholders
if currency in ["EUR", "GBP", "USD"]:
self.balance = self.balance.replace("QUOTE", currency)
elif currency in ["BCH", "BTC", "ETH", "LTC", "XLM"]:
self.balance = self.balance.replace("BASE", currency)
if (
self.balance.currency[
self.balance.currency.isin([currency])
].empty
is True
):
self.balance.loc[len(self.balance)] = [currency, 0, 0, 0]
# retrieve balance of specified currency
df = self.balance
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
if currency in ["EUR", "GBP", "USD"]:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
2,
)
)
else:
return float(
truncate(
float(
df[df["currency"] == currency][
"available"
].values[0]
),
4,
)
)
else:
# dummy account
if currency == "":
# retrieve all balances
return self.balance
else:
# retrieve balance of specified currency
df = self.balance
df_filtered = df[df["currency"] == currency]["available"]
if len(df_filtered) == 0:
# return nil balance if no positive balance was found
return 0.0
else:
# return balance of specified currency (if positive)
return float(df[df["currency"] == currency]["available"].values[0])
def deposit_base_currency(self, base_currency: float) -> pd.DataFrame():
if self.app.exchange != "dummy":
raise Exception("deposit_base_currency() is for dummy account usage only!")
if base_currency <= 0:
raise ValueError(f"Invalid base currency: {str(base_currency)}")
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
]
+ base_currency
)
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "available"
] = self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
]
return self.balance
def deposit_quote_currency(self, quote_currency: float) -> pd.DataFrame():
if self.app.exchange != "dummy":
raise Exception("deposit_base_currency() is for dummy account usage only!")
if quote_currency <= 0:
raise ValueError(f"Invalid quote currency: {str(quote_currency)}")
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
]
+ quote_currency
)
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "available"
] = self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
]
return self.balance
def withdraw_base_currency(self, base_currency: float) -> pd.DataFrame():
if self.app.exchange != "dummy":
raise Exception("deposit_base_currency() is for dummy account usage only!")
if base_currency <= 0:
raise ValueError(f"Invalid base currency: {str(base_currency)}")
if (
float(
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
]
- base_currency
)
< 0
):
raise ValueError("Insufficient funds!")
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
]
- base_currency
)
self.balance.loc[
self.balance["currency"] == self.app.base_currency, "available"
] = self.balance.loc[
self.balance["currency"] == self.app.base_currency, "balance"
]
return self.balance
def withdraw_quote_currency(self, quote_currency: float) -> pd.DataFrame():
if self.app.exchange != "dummy":
raise Exception("deposit_base_currency() is for dummy account usage only!")
if quote_currency <= 0:
raise ValueError(f"Invalid quote currency: {str(quote_currency)}")
if (
float(
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
]
- quote_currency
)
< 0
):
raise ValueError("Insufficient funds!")
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
]
- quote_currency
)
self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "available"
] = self.balance.loc[
self.balance["currency"] == self.app.quote_currency, "balance"
]
return self.balance
def market_buy(
self,
market: str = "",
quote_currency: float = 0.0,
buy_percent: float = 100,
price: float = 0.0,
) -> pd.DataFrame():
if self.app.exchange != "dummy":
raise Exception("deposit_base_currency() is for dummy account usage only!")
if price <= 0:
raise ValueError(f"Invalid price: {str(price)}")
if market == "":
market = self.app.market
p = re.compile(r"^[0-9A-Z]{1,20}\-[1-9A-Z]{2,5}$")
if not p.match(market):
raise ValueError(f"Invalid market: {market}")
market_base_currency, market_quote_currency = market.split("-")
if quote_currency > float(
self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
]
):
raise ValueError("Insufficient funds!")
# update balances
self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
]
- quote_currency
)
self.balance.loc[
self.balance["currency"] == market_quote_currency, "available"
] = self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
]
fees = quote_currency * 0.001
self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
]
+ (quote_currency / price)
- (fees / price)
)
self.balance.loc[
self.balance["currency"] == market_base_currency, "available"
] = self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
]
# update orders
self.orders = pd.concat(
[
self.orders,
pd.DataFrame(
{
"created_at": str(datetime.now()),
"market": market,
"action": "buy",
"type": "market",
"size": quote_currency,
"filled": float(
self.balance.loc[
self.balance["currency"] == market_base_currency,
"balance",
]
),
"fees": fees,
"price": price,
"status": "done",
},
index={0},
),
],
ignore_index=True,
)
return True
def market_sell(
self,
market: str = "",
base_currency: float = 0.0,
price: float = 0.0,
) -> pd.DataFrame():
if self.app.exchange != "dummy":
raise Exception("deposit_base_currency() is for dummy account usage only!")
if price <= 0:
raise ValueError(f"Invalid price: {str(price)}")
if market == "":
market = self.app.market
p = re.compile(r"^[0-9A-Z]{1,20}\-[1-9A-Z]{2,5}$")
if not p.match(market):
raise ValueError(f"Invalid market: {market}")
market_base_currency, market_quote_currency = market.split("-")
if base_currency > float(
self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
]
):
raise ValueError("Insufficient funds!")
# update balances
self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
]
- base_currency
)
self.balance.loc[
self.balance["currency"] == market_base_currency, "available"
] = self.balance.loc[
self.balance["currency"] == market_base_currency, "balance"
]
fees = (base_currency * price) * 0.001
self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
] = (
self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
]
+ (base_currency * price)
- fees
)
self.balance.loc[
self.balance["currency"] == market_quote_currency, "available"
] = self.balance.loc[
self.balance["currency"] == market_quote_currency, "balance"
]
# update orders
self.orders = pd.concat(
[
self.orders,
pd.DataFrame(
{
"created_at": str(datetime.now()),
"market": market,
"action": "sell",
"type": "market",
"size": base_currency,
"filled": base_currency,
"fees": fees,
"price": price,
"status": "done",
},
index={0},
),
],
ignore_index=True,
)
return True
def save_tracker_csv(self, market="", save_file="tracker.csv"):
"""Saves order tracker to CSV
Parameters
----------
market : str, optional
Filters orders by market
save_file : str
Output CSV file
"""
# validate market is syntactically correct
self._check_market_syntax(market)
if self.mode == "live":
if self.app.exchange == Exchange.COINBASE:
# retrieve orders from live Coinbase account portfolio
df = self.get_orders(market, "", "done")
elif self.app.exchange == Exchange.COINBASEPRO:
# retrieve orders from live Coinbase Pro account portfolio
df = self.get_orders(market, "", "done")
elif self.app.exchange == Exchange.BINANCE:
# retrieve orders from live Binance account portfolio
df = self.get_orders(market, "", "done")
elif self.app.exchange == Exchange.KUCOIN:
# retrieve orders from live Kucoin account portfolio
df = self.get_orders(market, "", "done")
else:
df = pd.DataFrame()
else:
# return dummy orders
if market == "":
df = self.orders
else:
if "market" in self.orders:
df = self.orders[self.orders["market"] == market]
else:
df = pd.DataFrame()
if list(df.keys()) != [
"created_at",
"market",
"action",
"type",
"size",
"value",
"fees",
"price",
"status",
]:
# no data, return early
return False
df_tracker = pd.DataFrame()
last_action = ""
for market in df["market"].sort_values().unique():
df_market = df[df["market"] == market]
df_buy = pd.DataFrame()
df_sell = pd.DataFrame()
pair = 0
# pylint: disable=unused-variable
for index, row in df_market.iterrows():
if row["action"] == "buy":
pair = 1
if pair == 1 and (row["action"] != last_action):
if row["action"] == "buy":
df_buy = row
elif row["action"] == "sell":
df_sell = row
if row["action"] == "sell" and len(df_buy) != 0:
df_pair = pd.DataFrame(
[
[
df_sell["status"],
df_buy["market"],
df_buy["created_at"],
df_buy["type"],
df_buy["size"],
df_buy["value"],