added to stoploss doc

This commit is contained in:
misagh 2019-03-12 15:48:30 +01:00
parent 8d5cc42ef5
commit 0bcf50f1b5
1 changed files with 3 additions and 0 deletions

View File

@ -55,8 +55,11 @@ Both values can be configured in the main configuration file and requires `"trai
``` json
"trailing_stop_positive": 0.01,
"trailing_stop_positive_offset": 0.011,
"trailing_only_offset_is_reached": false
```
The 0.01 would translate to a 1% stop loss, once you hit 1.1% profit.
You should also make sure to have this value (`trailing_stop_positive_offset`) lower than your minimal ROI, otherwise minimal ROI will apply first and sell your trade.
If `"trailing_only_offset_is_reached": true` then the trailing stoploss is only activated once the offset is reached.