mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-14 20:23:57 +00:00
docs: Add note about custom-stoploss exit reasons
Some checks failed
Build Documentation / Deploy Docs through mike (push) Has been cancelled
Some checks failed
Build Documentation / Deploy Docs through mike (push) Has been cancelled
This commit is contained in:
parent
44ff6d50ec
commit
12560e983c
|
@ -166,6 +166,7 @@ Called for open trade every iteration (roughly every 5 seconds) until a trade is
|
|||
The usage of the custom stoploss method must be enabled by setting `use_custom_stoploss=True` on the strategy object.
|
||||
|
||||
The stoploss price can only ever move upwards - if the stoploss value returned from `custom_stoploss` would result in a lower stoploss price than was previously set, it will be ignored. The traditional `stoploss` value serves as an absolute lower level and will be instated as the initial stoploss (before this method is called for the first time for a trade), and is still mandatory.
|
||||
As custom stoploss acts as regular, changing stoploss, it will behave similar to `trailing_stop` - and trades exiting due to this will have the exit_reason of `"trailing_stop_loss"`.
|
||||
|
||||
The method must return a stoploss value (float / number) as a percentage of the current price.
|
||||
E.g. If the `current_rate` is 200 USD, then returning `0.02` will set the stoploss price 2% lower, at 196 USD.
|
||||
|
|
Loading…
Reference in New Issue
Block a user