Merge pull request #1034 from freqtrade/feat/positive_sl_limit

add offset for positive trailing stop loss
This commit is contained in:
Samuel Husso
2018-07-29 08:30:29 +03:00
committed by GitHub
6 changed files with 82 additions and 8 deletions

View File

@@ -63,6 +63,7 @@ CONF_SCHEMA = {
'stoploss': {'type': 'number', 'maximum': 0, 'exclusiveMaximum': True},
'trailing_stop': {'type': 'boolean'},
'trailing_stop_positive': {'type': 'number', 'minimum': 0, 'maximum': 1},
'trailing_stop_positive_offset': {'type': 'number', 'minimum': 0, 'maximum': 1},
'unfilledtimeout': {
'type': 'object',
'properties': {