stable/freqtrade/strategy
Joe Schr f3388ed9aa fix IStrategy: abstract methods still need to pass through return value
otherwise doing something like:
```py
dataframe = super().populate_indicators(dataframe, ...)
```

won't work, because `dataframe` becomes `None`.

This is needed if one of those methods uses dataframe.copy() instead of
just working on reference. e.g. using `merge_informative` in
`populate_indicator` in a nested class hierarchy
2021-04-30 14:39:01 +02:00
..
__init__.py Implement DecimalParameter and rename FloatParameter to RealParameter. 2021-04-02 17:08:16 +03:00
hyper.py Add "range" property to IntParameter 2021-04-24 07:00:33 +02:00
interface.py fix IStrategy: abstract methods still need to pass through return value 2021-04-30 14:39:01 +02:00
strategy_helper.py complete stoploss_from_open and associated test 2021-03-17 22:44:10 +09:00
strategy_wrapper.py Apply isort to freqtrade codebase 2020-09-28 19:40:46 +02:00