Files
stable/docs
JoeSchr e791ff6042 Fix: custom_stoploss returns typo
Afaik it should return -0.07 for 7% instead of -0.7.

As a side note, really interesting would also be an example for greater than 100% profits. especially when trailing stoploss, like
* Once profit is > 200% - stoploss will be set to 150%.

I assume it could be as simple as
```py
if current_profit > 2:
            return (-1.50 + current_profit)
````
to achieve it

But I'm not quite confident, if the bot can handle stuff smaller than `-1`, since `1` and `-1` seem to have some special meaning and are often used to disable stoploss etc.
2021-02-27 23:28:26 +01:00
..
2020-01-07 07:16:31 +01:00
2018-12-28 15:55:51 +01:00
2020-12-28 14:08:57 +01:00
2020-06-17 22:49:01 +03:00
2021-02-25 19:57:09 +01:00
2021-02-05 20:09:13 +01:00
2021-02-24 06:46:32 +01:00
2021-02-26 11:11:27 +01:00
2021-02-24 06:46:32 +01:00
2021-02-24 06:46:32 +01:00
2021-01-31 14:50:54 +01:00
2020-10-22 07:42:47 +02:00
2020-12-04 19:59:26 +01:00