mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
minor: Exchange notes docs
* Formatting (structure of sections) * Cosmetic changes This was not noticed in terms of #2505
This commit is contained in:
parent
c5ed004c9e
commit
661c8251c5
|
@ -27,13 +27,6 @@ Binance has been split into 3, and users must use the correct ccxt exchange ID f
|
||||||
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.
|
||||||
|
|
||||||
#### Random notes for other exchanges
|
|
||||||
|
|
||||||
* The Ocean (ccxt id: 'theocean') exchange uses Web3 functionality and requires web3 package to be installed:
|
|
||||||
```shell
|
|
||||||
$ pip3 install web3
|
|
||||||
```
|
|
||||||
|
|
||||||
## Bittrex
|
## Bittrex
|
||||||
|
|
||||||
### Restricted markets
|
### Restricted markets
|
||||||
|
@ -41,7 +34,7 @@ $ pip3 install web3
|
||||||
Bittrex split its exchange into US and International versions.
|
Bittrex split its exchange into US and International versions.
|
||||||
The International version has more pairs available, however the API always returns all pairs, so there is currently no automated way to detect if you're affected by the restriction.
|
The International version has more pairs available, however the API always returns all pairs, so there is currently no automated way to detect if you're affected by the restriction.
|
||||||
|
|
||||||
If you have restricted pairs in your whitelist, you'll get a warning message in the log on FreqTrade startup for each restricted pair.
|
If you have restricted pairs in your whitelist, you'll get a warning message in the log on Freqtrade startup for each restricted pair.
|
||||||
|
|
||||||
The warning message will look similar to the following:
|
The warning message will look similar to the following:
|
||||||
|
|
||||||
|
@ -49,8 +42,8 @@ The warning message will look similar to the following:
|
||||||
[...] Message: bittrex {"success":false,"message":"RESTRICTED_MARKET","result":null,"explanation":null}"
|
[...] Message: bittrex {"success":false,"message":"RESTRICTED_MARKET","result":null,"explanation":null}"
|
||||||
```
|
```
|
||||||
|
|
||||||
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 snipptet:
|
||||||
|
|
||||||
|
@ -62,3 +55,10 @@ res = [ f"{x['MarketCurrency']}/{x['BaseCurrency']}" for x in ct.publicGetMarket
|
||||||
print(res)
|
print(res)
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Random notes for other exchanges
|
||||||
|
|
||||||
|
* The Ocean (ccxt id: 'theocean') exchange uses Web3 functionality and requires web3 package to be installed:
|
||||||
|
```shell
|
||||||
|
$ pip3 install web3
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue
Block a user