You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sudo docker run --rm -v ~/Crypto-Signal/config.yml:/app/config.yml shadowreaver/crypto-signal:master
Traceback (most recent call last):
File "app.py", line 45, in
main()
File "app.py", line 29, in main
exchange_interface = ExchangeInterface(config.exchanges)
File "/app/exchange.py", line 30, in init
new_exchange = getattr(ccxt, exchange)({
AttributeError: module 'ccxt' has no attribute 'coinbase'
The text was updated successfully, but these errors were encountered:
@subbu52, you probably want Coinbase Pro. Coinbase is not an exchange, it's a wallet service with some rich functions. Can you try replacing coinbase by coinbasepro ?
sudo docker run --rm -v ~/Crypto-Signal/config.yml:/app/config.yml shadowreaver/crypto-signal:master
Traceback (most recent call last):
File "app.py", line 45, in
main()
File "app.py", line 29, in main
exchange_interface = ExchangeInterface(config.exchanges)
File "/app/exchange.py", line 30, in init
new_exchange = getattr(ccxt, exchange)({
AttributeError: module 'ccxt' has no attribute 'coinbasepro'
config.yml file:
settings:
update_interval: 300
market_pairs:
- BTC/USDT
- SHIB/USDT
- DOGE/USDT
exchanges:
coinbase:
required:
enabled: true
binance:
required:
enabled: true
sudo docker run --rm -v ~/Crypto-Signal/config.yml:/app/config.yml shadowreaver/crypto-signal:master
Traceback (most recent call last):
File "app.py", line 45, in
main()
File "app.py", line 29, in main
exchange_interface = ExchangeInterface(config.exchanges)
File "/app/exchange.py", line 30, in init
new_exchange = getattr(ccxt, exchange)({
AttributeError: module 'ccxt' has no attribute 'coinbase'
The text was updated successfully, but these errors were encountered: