File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- # Python Crypto Bot v8.2.3 (pycryptobot)
1
+ # Python Crypto Bot v8.2.4 (pycryptobot)
2
2
3
3
[ ![ Docker] ( https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg )] ( https://github.com/whittlem/pycryptobot/actions/workflows/container.yml/badge.svg ) [ ![ Tests] ( https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg )] ( https://github.com/whittlem/pycryptobot/actions/workflows/unit-tests.yml/badge.svg )
4
4
@@ -38,10 +38,10 @@ Follow my Medium publication for PyCryptoBot articles
38
38
For information about installing, using, and getting the most out of the bot... please refer to the articles on Medium!
39
39
40
40
Install and Setup of PyCryptoBot 7
41
- https://trading-data-analysis.pro/install-and-setup-of-pycryptobot-7-f1b2c832e795
41
+ < https://trading-data-analysis.pro/install-and-setup-of-pycryptobot-7-f1b2c832e795 >
42
42
43
43
PyCryptoBot 7 Live Test Results
44
- https://trading-data-analysis.pro/pycryptobot-7-live-test-results-b56316e0995c
44
+ < https://trading-data-analysis.pro/pycryptobot-7-live-test-results-b56316e0995c >
45
45
46
46
PyCryptoBot 7 Configuration
47
- https://trading-data-analysis.pro/pycryptobot-7-configuration-e314931f94
47
+ < https://trading-data-analysis.pro/pycryptobot-7-configuration-e314931f94 >
Original file line number Diff line number Diff line change 8
8
from models .Trading import TechnicalAnalysis
9
9
from models .exchange .binance import PublicAPI as BPublicAPI
10
10
from models .exchange .coinbase import AuthAPI as CBAuthAPI
11
+ from models .config .coinbase_parser import parser as coinbaseParser
11
12
from models .exchange .coinbase_pro import PublicAPI as CPublicAPI
12
13
from models .exchange .kucoin import PublicAPI as KPublicAPI
13
14
from models .exchange .Granularity import Granularity
34
35
if ex == Exchange .BINANCE :
35
36
api = BPublicAPI (bot_config [ex .value ]["api_url" ])
36
37
elif ex == Exchange .COINBASE :
38
+ # Read config from key file
39
+ coinbaseParser (app , bot_config [ex .value ])
37
40
api = CBAuthAPI (bot_config [ex .value ]["api_key" ], bot_config [ex .value ]["api_secret" ], bot_config [ex .value ]["api_url" ])
38
41
elif ex == Exchange .COINBASEPRO :
39
42
api = CPublicAPI ()
You can’t perform that action at this time.
0 commit comments