mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
parent
c4979fd87f
commit
1b3b389109
|
@ -92,9 +92,6 @@ To use subaccounts with FTX, you need to edit the configuration and add the foll
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
!!! Note
|
|
||||||
Older versions of freqtrade may require this key to be added to `"ccxt_async_config"` as well.
|
|
||||||
|
|
||||||
## All exchanges
|
## All exchanges
|
||||||
|
|
||||||
Should you experience constant errors with Nonce (like `InvalidNonce`), it is best to regenerate the API keys. Resetting Nonce is difficult and it's usually easier to regenerate the API keys.
|
Should you experience constant errors with Nonce (like `InvalidNonce`), it is best to regenerate the API keys. Resetting Nonce is difficult and it's usually easier to regenerate the API keys.
|
||||||
|
|
|
@ -93,10 +93,10 @@ def ask_user_config() -> Dict[str, Any]:
|
||||||
"message": "Select exchange",
|
"message": "Select exchange",
|
||||||
"choices": [
|
"choices": [
|
||||||
"binance",
|
"binance",
|
||||||
"binanceje",
|
|
||||||
"binanceus",
|
"binanceus",
|
||||||
"bittrex",
|
"bittrex",
|
||||||
"kraken",
|
"kraken",
|
||||||
|
"ftx",
|
||||||
Separator(),
|
Separator(),
|
||||||
"other",
|
"other",
|
||||||
],
|
],
|
||||||
|
@ -173,6 +173,9 @@ def deploy_new_config(config_path: Path, selections: Dict[str, Any]) -> None:
|
||||||
arguments=selections)
|
arguments=selections)
|
||||||
|
|
||||||
logger.info(f"Writing config to `{config_path}`.")
|
logger.info(f"Writing config to `{config_path}`.")
|
||||||
|
logger.info(
|
||||||
|
"Please make sure to check the configuration contents and adjust settings to your needs.")
|
||||||
|
|
||||||
config_path.write_text(config_text)
|
config_path.write_text(config_text)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,8 @@
|
||||||
"enabled": false,
|
"enabled": false,
|
||||||
"listen_ip_address": "127.0.0.1",
|
"listen_ip_address": "127.0.0.1",
|
||||||
"listen_port": 8080,
|
"listen_port": 8080,
|
||||||
"verbosity": "info",
|
"verbosity": "error",
|
||||||
|
"enable_openapi": false,
|
||||||
"jwt_secret_key": "somethingrandom",
|
"jwt_secret_key": "somethingrandom",
|
||||||
"CORS_origins": [],
|
"CORS_origins": [],
|
||||||
"username": "",
|
"username": "",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user