Add Freqtrade config example
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"_comment": "Freqtrade configuration for mt5bridge-ccxt. Drop into user_data/config.json or pass via -c flag.",
|
||||
"max_open_trades": 3,
|
||||
"stake_currency": "USD",
|
||||
"stake_amount": 10,
|
||||
"dry_run": true,
|
||||
"unfilledtimeout": {
|
||||
"entry": 10,
|
||||
"exit": 10
|
||||
},
|
||||
"exchange": {
|
||||
"name": "mt5bridge",
|
||||
"ccxt_config": {
|
||||
"apiKey": "your-mt5bridge-api-key",
|
||||
"host": "http://localhost:8080",
|
||||
"symbols": {
|
||||
"XAU/USD": "XAUUSDc",
|
||||
"EUR/USD": "EURUSDc"
|
||||
}
|
||||
},
|
||||
"ccxt_sync_config": {
|
||||
"enableRateLimit": true,
|
||||
"rateLimit": 200
|
||||
},
|
||||
"pair_whitelist": [
|
||||
"XAU/USD",
|
||||
"EUR/USD"
|
||||
],
|
||||
"pair_blacklist": []
|
||||
},
|
||||
"telegram": {
|
||||
"enabled": false
|
||||
},
|
||||
"api_server": {
|
||||
"enabled": false
|
||||
},
|
||||
"bot_name": "mt5bridge_bot",
|
||||
"initial_state": "running",
|
||||
"force_exit_enable": false,
|
||||
"internals": {
|
||||
"process_throttle_secs": 5
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user