Fix exchange urls dict, don't need to initialize exchanges
This commit is contained in:
parent
62a48c741b
commit
38307755e6
@ -23,8 +23,8 @@ _DRY_RUN_OPEN_ORDERS: Dict[str, Any] = {}
|
|||||||
|
|
||||||
# Urls to exchange markets, insert quote and base with .format()
|
# Urls to exchange markets, insert quote and base with .format()
|
||||||
_EXCHANGE_URLS = {
|
_EXCHANGE_URLS = {
|
||||||
ccxt.bittrex().id: '/Market/Index?MarketName={quote}-{base}',
|
ccxt.bittrex.__name__: '/Market/Index?MarketName={quote}-{base}',
|
||||||
ccxt.binance().id: '/tradeDetail.html?symbol={base}_{quote}'
|
ccxt.binance.__name__: '/tradeDetail.html?symbol={base}_{quote}'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user