Merge pull request #136 from gcarq/stoploss_tweak

Stoploss tweak
This commit is contained in:
Samuel Husso 2017-11-23 19:54:08 +02:00 committed by GitHub
commit 7ba4a5d24b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -6,10 +6,10 @@
"minimal_roi": {
"40": 0.0,
"30": 0.01,
"20": 0.02
"20": 0.02,
"0": 0.04
},
"stoploss": -0.40,
"stoploss": -0.10,
"bid_strategy": {
"ask_last_balance": 0.0
},

View File

@ -23,7 +23,7 @@ def default_conf():
"20": 0.02,
"0": 0.04
},
"stoploss": -0.05,
"stoploss": -0.10,
"bid_strategy": {
"ask_last_balance": 0.0
},
@ -63,7 +63,7 @@ def backtest_conf():
"20": 0.02,
"0": 0.04
},
"stoploss": -0.05
"stoploss": -0.10
}