Merge pull request #2508 from freqtrade/hroff-1902-patch-1

minor: More cosmetics on Exchange Notes
This commit is contained in:
Matthias 2019-11-11 10:39:20 +01:00 committed by GitHub
commit 173375de7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -24,7 +24,7 @@ Binance has been split into 3, and users must use the correct ccxt exchange ID f
### Historic Kraken data ### Historic Kraken data
The Kraken API does only provide 720 historic candles, which is sufficient for FreqTrade dry-run and live trade modes, but is a problem for backtesting. The Kraken API does only provide 720 historic candles, which is sufficient for Freqtrade dry-run and live trade modes, but is a problem for backtesting.
To download data for the Kraken exchange, using `--dl-trades` is mandatory, otherwise the bot will download the same 720 candles over and over, and you'll not have enough backtest data. To download data for the Kraken exchange, using `--dl-trades` is mandatory, otherwise the bot will download the same 720 candles over and over, and you'll not have enough backtest data.
## Bittrex ## Bittrex
@ -45,7 +45,7 @@ The warning message will look similar to the following:
If you're an "International" customer on the Bittrex exchange, then this warning will probably not impact you. If you're an "International" customer on the Bittrex exchange, then this warning will probably not impact you.
If you're a US customer, the bot will fail to create orders for these pairs, and you should remove them from your whitelist. If you're a US customer, the bot will fail to create orders for these pairs, and you should remove them from your whitelist.
You can get a list of restricted markets by using the following snipptet: You can get a list of restricted markets by using the following snippet:
``` python ``` python
import ccxt import ccxt
@ -53,12 +53,11 @@ ct = ccxt.bittrex()
_ = ct.load_markets() _ = ct.load_markets()
res = [ f"{x['MarketCurrency']}/{x['BaseCurrency']}" for x in ct.publicGetMarkets()['result'] if x['IsRestricted']] res = [ f"{x['MarketCurrency']}/{x['BaseCurrency']}" for x in ct.publicGetMarkets()['result'] if x['IsRestricted']]
print(res) print(res)
``` ```
## Random notes for other exchanges ## Random notes for other exchanges
* The Ocean (ccxt id: 'theocean') exchange uses Web3 functionality and requires web3 package to be installed: * The Ocean (exchange id: `theocean`) exchange uses Web3 functionality and requires `web3` python package to be installed:
```shell ```shell
$ pip3 install web3 $ pip3 install web3
``` ```