-
Notifications
You must be signed in to change notification settings - Fork 743
/
Copy pathscript-get_fees.py
54 lines (49 loc) · 1.6 KB
/
script-get_fees.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
import sys
sys.path.insert(0, ".")
from controllers.PyCryptoBot import PyCryptoBot # noqa: E402
from models.exchange.binance import AuthAPI as BAuthAPI # noqa: E402
from models.exchange.coinbase import AuthAPI as CBAuthAPI # noqa: E402
from models.exchange.coinbase_pro import AuthAPI as CAuthAPI # noqa: E402
# Coinbase fees
app = PyCryptoBot(exchange="coinbase")
api = CBAuthAPI(app.api_key, app.api_secret, app.api_url, app=app)
# print (api.get_taker_fee())
# print (api.get_taker_fee('BTC-GBP'))
# print (api.get_maker_fee())
# print (api.get_maker_fee('BTC-GBP'))
# print (api.get_fees('BTCGBP'))
# print (api.get_fees())
print(api.get_maker_fee())
print(api.get_taker_fee())
print(app.get_maker_fee())
print(app.get_taker_fee())
"""
# Coinbase Pro fees
app = PyCryptoBot(exchange="coinbasepro")
api = CAuthAPI(app.api_key, app.api_secret, app.api_passphrase, app.api_url, app=app)
# print (api.get_taker_fee())
# print (api.get_taker_fee('BTC-GBP'))
# print (api.get_maker_fee())
# print (api.get_maker_fee('BTC-GBP'))
# print (api.get_fees('BTCGBP'))
# print (api.get_fees())
print(api.get_maker_fee())
print(api.get_taker_fee())
print(app.get_maker_fee())
print(app.get_taker_fee())
"""
"""
# Binance fees
app = PyCryptoBot(exchange="binance")
api = BAuthAPI(app.api_key, app.api_secret, app.api_url, app=app)
# print (api.get_taker_fee())
# print (api.get_taker_fee('BTCGBP'))
# print (api.get_maker_fee())
# print (api.get_maker_fee('BTCGBP'))
# print (api.get_fees('BTCGBP'))
# print (api.get_fees())
print(api.get_maker_fee())
print(api.get_taker_fee())
print(app.get_maker_fee())
print(app.get_taker_fee())
"""