Add link between stoploss_from_open and custom_stop documentation

This commit is contained in:
Matthias
2021-03-18 06:46:08 +01:00
parent 983c0ef118
commit b6e9e74a8b
2 changed files with 3 additions and 4 deletions

View File

@@ -600,9 +600,9 @@ Stoploss values returned from `custom_stoploss` must specify a percentage relati
``` python
from freqtrade.strategy import IStrategy, stoploss_from_open
from datetime import datetime
from freqtrade.persistence import Trade
from freqtrade.strategy import IStrategy, stoploss_from_open
class AwesomeStrategy(IStrategy):
@@ -621,6 +621,7 @@ Stoploss values returned from `custom_stoploss` must specify a percentage relati
```
Full examples can be found in the [Custom stoploss](strategy-advanced.md#custom-stoploss) section of the Documentation.
## Additional data (Wallets)