mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
a4b2f4e4b9
* Move State handling to misc, to avoid circular imports * Add optional config attribute "initial_state"
40 lines
833 B
Plaintext
40 lines
833 B
Plaintext
{
|
|
"max_open_trades": 3,
|
|
"stake_currency": "BTC",
|
|
"stake_amount": 0.05,
|
|
"dry_run": false,
|
|
"minimal_roi": {
|
|
"2880": 0.005,
|
|
"720": 0.01,
|
|
"0": 0.02
|
|
},
|
|
"stoploss": -0.10,
|
|
"poloniex": {
|
|
"enabled": false,
|
|
"key": "key",
|
|
"secret": "secret",
|
|
"pair_whitelist": []
|
|
},
|
|
"bittrex": {
|
|
"enabled": true,
|
|
"key": "key",
|
|
"secret": "secret",
|
|
"pair_whitelist": [
|
|
"BTC_RLC",
|
|
"BTC_TKN",
|
|
"BTC_TRST",
|
|
"BTC_SWT",
|
|
"BTC_PIVX",
|
|
"BTC_MLN",
|
|
"BTC_XZC",
|
|
"BTC_TIME",
|
|
"BTC_LUN"
|
|
]
|
|
},
|
|
"telegram": {
|
|
"enabled": true,
|
|
"token": "token",
|
|
"chat_id": "chat_id"
|
|
},
|
|
"initial_state": "running"
|
|
} |