From a44978a0680b489a5123b1c7f46d28faba24b5c3 Mon Sep 17 00:00:00 2001 From: creslinux Date: Mon, 4 Jun 2018 21:48:15 +0300 Subject: [PATCH] Per steer from project core member, add other valid coinmarketcap listed crypto base currencies that are valid during conversion lookup Here is the test of USDT working: https://api.coinmarketcap.com/v2/ticker/1027/?convert=USDT&limit=10 CMK page lists: "BTC", "ETH" "XRP", "LTC", and "BCH" as valid. --- freqtrade/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/constants.py b/freqtrade/constants.py index 9560afae8..f40efec9a 100644 --- a/freqtrade/constants.py +++ b/freqtrade/constants.py @@ -29,7 +29,7 @@ SUPPORTED_FIAT = [ "EUR", "GBP", "HKD", "HUF", "IDR", "ILS", "INR", "JPY", "KRW", "MXN", "MYR", "NOK", "NZD", "PHP", "PKR", "PLN", "RUB", "SEK", "SGD", "THB", "TRY", "TWD", "ZAR", "USD", - "USDT" + "BTC", "ETH", "XRP", "LTC", "BCH", "USDT" ] # Required json-schema for user specified config