Removed profit roi updated with config.json

This commit is contained in:
MoonGem 2018-03-23 17:34:31 -05:00 committed by GitHub
parent ccf5831275
commit 9fde3556a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,31 +11,52 @@ def hyperopt_optimize_conf() -> dict:
:return: :return:
""" """
return { return {
'max_open_trades': 3, 'max_open_trades': 15,
'stake_currency': 'BTC', 'stake_currency': 'BTC',
'stake_amount': 0.01, 'stake_amount': 0.00075,
"minimal_roi": { 'ticker_interval': 5,
'40': 0.0,
'30': 0.01,
'20': 0.02,
'0': 0.04,
},
'stoploss': -0.10,
"bid_strategy": { "bid_strategy": {
"ask_last_balance": 0.0 "ask_last_balance": 0.0
}, },
"exchange": { "exchange": {
"pair_whitelist": [ "pair_whitelist": [
"BTC_ETH", 'BTC_ETH',
"BTC_LTC", 'BTC_XRP',
"BTC_ETC", 'BTC_BCC',
"BTC_DASH", 'BTC_LTC',
"BTC_ZEC", 'BTC_ADA',
"BTC_XLM", 'BTC_XMR',
"BTC_NXT", 'BTC_DASH',
"BTC_POWR", 'BTC_TRX',
"BTC_ADA", 'BTC_ETC',
"BTC_XMR" 'BTC_ZEC',
'BTC_WAVES',
'BTC_STEEM',
'BTC_STRAT',
'BTC_DCR',
'BTC_REP',
'BTC_SNT',
'BTC_KMD',
'BTC_ARK',
'BTC_ARDR',
'BTC_MONA',
'BTC_DGB',
'BTC_PIVX',
'BTC_SYS',
'BTC_FCT',
'BTC_BAT',
'BTC_GNT',
'BTC_XZC',
'BTC_EMC',
'BTC_NXT',
'BTC_SALT',
'BTC_PAY',
'BTC_PART',
'BTC_GBYTE',
'BTC_BNT',
'BTC_POWR',
'BTC_NXS',
'BTC_SRN'
] ]
} }
} }