Skip to content

Commit

Permalink
Remove binanceje, add ftx to config selector
Browse files Browse the repository at this point in the history
closes #4441
  • Loading branch information
xmatthias committed Feb 26, 2021
1 parent c4979fd commit 1b3b389
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 0 additions & 3 deletions docs/exchanges.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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.
Expand Down
5 changes: 4 additions & 1 deletion freqtrade/commands/build_config_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ def ask_user_config() -> Dict[str, Any]:
"message": "Select exchange",
"choices": [
"binance",
"binanceje",
"binanceus",
"bittrex",
"kraken",
"ftx",
Separator(),
"other",
],
Expand Down Expand Up @@ -173,6 +173,9 @@ def deploy_new_config(config_path: Path, selections: Dict[str, Any]) -> None:
arguments=selections)

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)


Expand Down
3 changes: 2 additions & 1 deletion freqtrade/templates/base_config.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"enabled": false,
"listen_ip_address": "127.0.0.1",
"listen_port": 8080,
"verbosity": "info",
"verbosity": "error",
"enable_openapi": false,
"jwt_secret_key": "somethingrandom",
"CORS_origins": [],
"username": "",
Expand Down

0 comments on commit 1b3b389

Please sign in to comment.